	.bios_carousel { width: 76vw; }

    /* main container */
    .main-container {
      max-width: 100%;
      margin: 0 auto;
      padding: 2rem 1rem;
    }

    /* separador entre seções */
    .carousel-section {
      margin-bottom: 2rem;
    }

    .carousel-section:last-child {
      margin-bottom: 0;
    }

    .section-header {
      text-align: center;
/*      margin-bottom: 2rem; */
    }

	.section-header h5 { margin: 0; font-size: 1.2rem; font-weight: 800; color: #f00; }

    .section-header h2 {
      font-size: 2rem;
      font-weight: 700;
      background: linear-gradient(135deg, #c62828, #e53935);
      background-clip: text;
      -webkit-background-clip: text;
      color: transparent;
      margin-bottom: 0.5rem;
    }

    .section-header p {
      font-size: 0.95rem;
      color: #4b5563;
      max-width: 700px;
      margin: 0 auto;
    }

    /* Carrossel estrutura */
    .carousel-container {
      position: relative;
      overflow: hidden;
      padding: 0.25rem 0;
    }

    .carousel-track-wrapper {
      overflow-x: hidden;
      padding: 0.5rem 0;
    }

    .carousel-track {
      display: flex;
      transition: transform 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
      gap: 1rem;
      will-change: transform;
    }

    /* Cards (mesmo estilo dos dois arquivos) */
    .team-card {
      flex: 0 0 auto;
      width: 20%;
      background: white;
      border-radius: 0.5rem;
      overflow: hidden;
      transition: all 0.2s ease;
      cursor: pointer;
    }

    .team-card:hover {
      transform: translateY(-4px);
    }

    .card-img-top {
      position: relative;
      width: 100%;
      aspect-ratio: 1 / 1;
      background: #f1f5f9;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .card-img-top img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.3s ease;
	  object-position: top;
    }

    .team-card:hover .card-img-top img {
      transform: scale(1.02);
    }

    .fallback-initials {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      background: rgba(255,0,0,0.2);
      color: white;
      font-weight: 600;
      font-size: 2rem;
      font-family: 'Inter', monospace;
      text-transform: uppercase;
    }

    .card-content {
      padding: 0.75rem 0.6rem 1rem;
      text-align: center;
    }

    .member-name {
      font-size: 0.9rem;
      font-weight: 700;
      line-height: 1.25;
      color: #1e293b;
      margin-bottom: 0.25rem;
      word-break: break-word;
    }

    .member-title {
      font-size: 0.68rem;
      font-weight: 600;
      letter-spacing: 0.02em;
      color: #948576;
      line-height: 1.3;
    }

    @media (max-width: 640px) {
      .team-card {
        width: -webkit-fill-available;
      }
      .member-name {
        font-size: 0.8rem;
      }
      .member-title {
        font-size: 0.62rem;
      }
    }

    /* Controles */
    .carousel-controls {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 1rem;
      flex-wrap: wrap;
    }

    .nav-btn {
      background: white;
      border: 1px solid #e2e8f0;
      width: 38px;
      height: 38px;
      border-radius: 60px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: all 0.2s;
      font-size: 1rem;
      color: #2d3e50;
    }

    .nav-btn:hover {
      background: #c62828;
      border-color: #c62828;
      color: white;
    }

    .dots-container {
      display: flex;
      gap: 0.5rem;
      flex-wrap: wrap;
      justify-content: center;
    }

    .dot {
      width: 8px;
      height: 8px;
      background: #cbd5e1;
      border-radius: 50%;
      cursor: pointer;
      transition: all 0.2s;
    }

    .dot.active {
      background: #c62828;
      width: 22px;
      border-radius: 20px;
    }

    /* Lightbox (global, mas cada carrossel dispara com dados próprios) */
    .lightbox-modal {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.85);
      z-index: 2000;
      justify-content: center;
      align-items: center;
      backdrop-filter: blur(5px);
    }

    .lightbox-content {
      background: white;
      max-width: 900px;
      width: 90%;
      max-height: 60vh;
      overflow-y: auto;
      padding: 2rem;
      position: relative;
      box-shadow: 0 30px 45px rgba(0, 0, 0, 0.3);
      animation: fadeInUp 0.25s ease;
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
    }

    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(20px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .close-lightbox {
      position: absolute;
      top: 1rem;
      right: 1.2rem;
      font-size: 1.8rem;
      font-weight: 300;
      cursor: pointer;
      color: #1e293b;
      background: #f1f5f9;
      width: 36px;
      height: 36px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      transition: all 0.2s;
    }

    .close-lightbox:hover {
      background: #c62828;
      color: white;
    }

    .lightbox-photo-section {
      display: flex;
      gap: 2rem;
      align-items: center;
      flex-wrap: wrap;
      border-bottom: 1px solid #e2e8f0;
      padding-bottom: 1.5rem;
    }

    .lightbox-avatar {
      width: 280px;
      height: 280px;
      object-fit: cover;
	  object-position: top;
      border-radius: 16px;
      background: #f1f5f9;
      flex-shrink: 0;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    }

    .lightbox-header-text {
      flex: 1;
    }

    .lightbox-name {
      font-size: 1.8rem;
      font-weight: 700;
      color: #0f172a;
      margin-bottom: 0.5rem;
    }

    .lightbox-title {
      font-size: 1rem;
      font-weight: 600;
      text-transform: uppercase;
      color: #c62828;
      letter-spacing: 0.3px;
      border-left: 3px solid #e53935;
      padding-left: 0.8rem;
    }

    .lightbox-bio {
      font-size: 1rem;
      line-height: 1.65;
      color: #1e293b;
      white-space: pre-wrap;
      word-break: break-word;
    }

    .lightbox-content::-webkit-scrollbar {
      width: 5px;
    }
    .lightbox-content::-webkit-scrollbar-track {
      background: #e2e8f0;
      border-radius: 10px;
    }
    .lightbox-content::-webkit-scrollbar-thumb {
      background: #c62828;
      border-radius: 10px;
    }


.fas.fa-chevron-left {
  display: inline-block;
  width: 1em;
  height: 1em;
  background-color: currentColor; /* ou qualquer cor desejada, ex: #e74c3c */
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 512'%3E%3Cpath d='M7.7 235.8c-10.3 12.6-9.5 31.1 2.2 42.8l128 128c9.2 9.2 22.9 11.9 34.9 6.9s19.8-16.6 19.8-29.6l0-256c0-12.9-7.8-24.6-19.8-29.6s-25.7-2.2-34.9 6.9l-128 128-2.2 2.4z'/%3E%3C/svg%3E");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 512'%3E%3Cpath d='M7.7 235.8c-10.3 12.6-9.5 31.1 2.2 42.8l128 128c9.2 9.2 22.9 11.9 34.9 6.9s19.8-16.6 19.8-29.6l0-256c0-12.9-7.8-24.6-19.8-29.6s-25.7-2.2-34.9 6.9l-128 128-2.2 2.4z'/%3E%3C/svg%3E");
}

.fas.fa-chevron-right {
  display: inline-block;
  width: 1em;
  height: 1em;
  background-color: currentColor; /* ou qualquer cor ex: #ff5722 */
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 512'%3E%3Cpath d='M249.3 235.8c10.2 12.6 9.5 31.1-2.2 42.8l-128 128c-9.2 9.2-22.9 11.9-34.9 6.9S64.5 396.9 64.5 384l0-256c0-12.9 7.8-24.6 19.8-29.6s25.7-2.2 34.9 6.9l128 128 2.2 2.4z'/%3E%3C/svg%3E");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 512'%3E%3Cpath d='M249.3 235.8c10.2 12.6 9.5 31.1-2.2 42.8l-128 128c-9.2 9.2-22.9 11.9-34.9 6.9S64.5 396.9 64.5 384l0-256c0-12.9 7.8-24.6 19.8-29.6s25.7-2.2 34.9 6.9l128 128 2.2 2.4z'/%3E%3C/svg%3E"); /* WebKit */
}


    @media (max-width: 680px) {
      .lightbox-photo-section {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
      }
      .lightbox-avatar {
        width: 220px;
        height: 220px;
      }
      .lightbox-name {
        font-size: 1.5rem;
      }
      .lightbox-title {
        text-align: center;
        border-left: none;
        padding-left: 0;
      }
    }

    @media (max-width: 480px) {
      .lightbox-avatar {
        width: 180px;
        height: 180px;
      }
      .lightbox-content {
        padding: 1.5rem;
      }
    }

    .attribution-note {
      text-align: center;
      margin-top: 2rem;
      font-size: 0.7rem;
      color: #6c757d;
      border-top: 1px solid #e2e8f0;
      padding-top: 1rem;
    }

    hr {
      margin: 2rem 0;
      border: none;
      height: 1px;
      background: linear-gradient(90deg, transparent, #cbd5e1, transparent);
    }

    @media (max-width: 800px) {
		.bios_carousel { width: 90vw; }
		.nav-btn.board-prev, .nav-btn.board-next, .nav-btn.global-prev, .nav-btn.global-next { display: none; }
	}





