body {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-family: 'Prima Sans', sans-serif;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
  }

  main {
    flex: 1;
}
  
  .navbar {
    background-color: #609ccc;
    padding: 1rem;
    font-family: 'Prima Sans', sans-serif;
    font-size: small;
    letter-spacing: 1px;
    font-weight: lighter;
  }
  
  .dropdown-menu {
    background-color: #111;
    color: white;
  }
  
  .dropdown-menu a {
    color: white;
  }
  
  .dropdown-menu a:hover {
    background-color: #333;
  }
  
  .hero-section {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('../assets/images/bg.png') center/cover no-repeat;
    text-align: center;
    color: white;
    padding-top: 100px;
    height: auto;
    min-height: 90vh;
  }
  
  select#languageSwitcher {
    width: 70px;
  }
  
  @media screen and (max-width: 768px) {
    .hero-section h1 {
      font-size: 2rem;
    }
  
    .hero-section p {
      font-size: 1rem;
    }
  }
  
  @media screen and (max-width: 480px) {
    .hero-section {
      padding-top: 60px;
    }
  
    .hero-section img {
      max-width: 200px;
    }
  } 

  @font-face {
    font-family: 'Prima Sans';
    src: url('../fonts/PrimaSans.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
  }

  @font-face {
    font-family: 'Prima Sans';
    src: url('../fonts/PrimaSans/PrimaSansBoldOblique/PrimaSansBoldOblique.otf') format('opentype');
    font-weight: bold;
    font-style: oblique;
  }

  @font-face {
    font-family: 'Prima Sans';
    src: url('../fonts/PrimaSans/PrimaSansBold/PrimaSansBold.otf') format('opentype');
    font-weight: bold;
    font-style: normal;
  }

  @font-face {
    font-family: 'Prima Sans';
    src: url('../fonts/PrimaSans/PrimaSansBoldOblique/PrimaSansBoldOblique.otf') format('opentype');
    font-weight: normal;
    font-style: oblique;
  }

  
  
  .shadow-navbar {
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    z-index: 999;
  }
  
  .navbar-nav .nav-link {
    padding-left: 15px;
    padding-right: 15px;
    font-size: 0.45rem;
  }

    @media (min-width: 1300px) {
    .navbar-nav .nav-link {
      font-size: 0.6rem;
    }
  }

  @media (min-width: 1500px) {
    .navbar-nav .nav-link {
      font-size: 0.85rem;
    }
  }

  .navbar-brand img {
    max-width: 180px;
    height: auto;
  }

  .hero-logo {
    max-width: 1000px;
    width: 100%;
  }
  
  @media (max-width: 992px) {
    .hero-logo {
      max-width: 600px;
    }
  }
  
  @media (max-width: 768px) {
    .hero-logo {
      max-width: 400px;
    }
  }
  
  @media (max-width: 480px) {
    .hero-logo {
      max-width: 280px;
    }
  }
  
  .overview-section {
    background: url('../assets/images/bg1.png') no-repeat right center;
    background-size: contain;
    color: #333;
    z-index: 1;
  }

  @media (max-width: 768px) {
    .overview-section {
      background-size: cover;
      background-position: center top;
    }
  }
  
  .btn-teal {
    background-color: #47B8C6;
    color: white;
    padding: 10px 20px;
    border-radius: 4px;
    text-decoration: none;
    transition: 0.3s ease;
  }
  
  .btn-teal:hover {
    background-color: #3998a3;
    color: white;
  }
  
  @media (max-width: 768px) {
    .overview-section {
      text-align: center;
    }
  
    .overview-section img {
      max-width: 90%;
      margin: 0 auto;
    }
  }
  
  /* Aplica transição global à section */
  .hidden {
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 0.8s ease, transform 0.8s ease;
    pointer-events: none;
  }
  
  .visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
  
  /* Anima as colunas individualmente */
  .col-animate {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
  }
  
  .col-animate.visible {
    opacity: 1;
    transform: translateY(0);
  }

  /* Título com fonte maior e espaçamento entre letras */
.custom-title {
  font-size: 2.8rem; /* ajuste conforme o design desejado */
  letter-spacing: 4px;
}

/* Parágrafo com fonte maior e limite de largura no desktop */
.custom-paragraph {
  font-size: 1.3rem;
  letter-spacing: 2px;
  font-weight: 300;
}

/* Parágrafo com fonte média e limite de largura no desktop */
.custom-paragraph-short {
  font-size: 1.2rem;
  letter-spacing: 2px;
  font-weight: 300;
}

/* Botão quadrado com fundo teal personalizado e letras brancas */
.custom-button {
  background-color: #08b4b4;
  color: #ffffff;
  border: none;
  padding: 12px 24px;
  font-weight: 300;
  text-transform: uppercase;
  transition: background-color 0.3s ease;
  letter-spacing: 5px;
  text-decoration: none;
}

/* Hover no botão */
.custom-button:hover {
  background-color: #069d9d;
  cursor: pointer;
}

.custom-paragraph-short strong {
  font-weight: 700; /* ou 700 se preferir um pouco mais leve */
  color: #000; /* opcional: reforça o contraste */
}

.bg-light-blue {
  background-color: #d8e8f2; /* tom suave azulado */
}

.mission-vision-section {
  margin-bottom: 100px;
}

.mission-vision-section h2 {
  font-size: 2.5rem;
  letter-spacing: 1px;
}

.box-with-extra-padding {
  padding-right: 4rem;
  padding-left: 4rem;
}

.slide-up {
  opacity: 0;
  transform: translateY(-50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.slide-up.animate-slide-in {
  opacity: 1;
  transform: translateY(0);
}

.research-section {
  padding: 60px 20px;
  background: #30749c;
}

.centralized-div {
  display: flex;
  justify-content: center;
}

.section-title {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 50px;
  color: white;
  background-color: #08b4b4;
  margin-top: -110px;
  letter-spacing: 4px;
  padding: 35px 100px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* sombra suave */
}

@media (max-width: 768px) {
  .section-title {
    margin-top: -90px;
    font-size: 1.8rem;
    padding: 10px 10px;
  }
}

.research-group {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 80px;
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease-in-out;
}

.research-group.reverse {
  flex-direction: row-reverse;
}

.research-img {
  background-color: #ffffff;
  box-shadow: 0 0 20px rgba(0,0,0,0.1);
  width: 100%;
  flex: 1 1 100%; /* padrão: ocupa 100% */
  display: flex;
  align-items: center;
  justify-content: center;
}

.research-img img {
  max-width: 80%;
  max-height: 80%;
  width: auto;
  height: auto;
  border-radius: 10px;
}

.research-text {
  color: white;
  flex: 1 1 100%; /* padrão: ocupa 100% */
}

/* Em telas grandes, divide em 50% cada */
@media (min-width: 769px) {
  .research-img {
    flex: 1 1 40%;
    margin-left: 0;
  }

  .research-text {
    flex: 1 1 60%
  }
}

.research-text h3 {
  font-size: 1.8rem;
  margin-bottom: 15px;
}

.research-text p {
  font-size: 1rem;
  margin-bottom: 20px;
  letter-spacing: 2px;
}

@media (max-width: 768px) {
  .research-group {
    flex-direction: column;
    text-align: center;
  }

  .research-group.reverse {
    flex-direction: column;
  }

  .research-img img {
    max-width: 100%;
  }
}

.fade-in-left {
  transform: translateX(-100px);
}

.fade-in-right {
  transform: translateX(100px);
}

@media (min-width: 769px) {
  .research-group:not(.reverse) .research-text {
    padding-right: 10%;
  }

  .research-group.reverse .research-text {
    padding-left: 10%;
  }
}

.footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 60px;
  background: linear-gradient(to bottom, #2f2f2f, #000);
  color: #f8f4f4;
  flex-wrap: wrap;
  margin-top: auto;
}

.footer-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-left .logo {
  width: 200px;
}

.footer-nav {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
  font-size: 0.6rem;
  opacity: 0.8;
  letter-spacing: 2px;
}

.footer-nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
}

.footer-nav a:hover {
  color: #08b4b4;
}

.footer-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end; 
  gap: 10px; 
}

.footer-right a {
  margin: 0 5px;
}

.footer-right-icons {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.footer-right img {
  width: 24px;
  height: 24px;
  filter: brightness(0) invert(1);
  transition: opacity 0.3s ease;
}

.footer-right img:hover {
  opacity: 0.6;
}

.footer-right .copyright {
  font-size: 0.75rem;
  opacity: 0.6;
  margin-left: 10px;
}

@media (max-width: 768px) {
  .footer {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 30px 20px;
    gap: 25px;
  }

  .footer-left {
    align-items: center;
  }

  .footer-nav {
    flex-direction: column;
    gap: 10px;
  }

  .footer-right {
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
  }

  .footer-right .copyright {
    margin: 10px 0 0 0;
    width: 100%;
    text-align: center;
  }
}

.custom-dropdown {
  background-color: rgba(0, 0, 0, 0.6); /* fundo escuro com transparência */
  color: white;
  border: none;
  padding: 10px;
  border-radius: 0 0 8px 8px;
  font-size: 0.8rem;
}

.custom-dropdown .dropdown-item,
.custom-dropdown .dropdown-header {
  color: white !important;
}

.custom-dropdown .dropdown-item:hover {
  background-color: rgba(255, 255, 255, 0.1); /* leve destaque no hover */
  color: white;
}

/* Para o "dropdown-header" virar um link estilizado */
.custom-dropdown .custom-header-link {
  font-weight: bold;
  font-style: italic;
  color: white !important;
  text-decoration: none;
}

/* Hover azul para todos os itens */
.custom-dropdown .dropdown-item:hover,
.custom-dropdown .custom-header-link:hover {
  background-color: rgba(255, 255, 255, 0.1) !important;
  color: #17989b !important;
}

.custom-header-no-link {
  font-weight: bold;
  font-style: italic;
  color: white !important;
  text-decoration: none;
}

.dropdown-menu .dropdown-item {
  white-space: normal;
  word-break: break-word;
  overflow-wrap: break-word;
}

@media (max-width: 768px) {
  .dropdown-menu.custom-dropdown {
    min-width: 280px; /* ou mais se quiser */
    width: auto;
    max-width: 90vw;
  }
}

/**/

/* Modal Estilizado */
.development-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.5);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}

.modal-content {
  background-color: #fff;
  padding: 25px;
  border-radius: 8px;
  width: 80%;
  max-width: 400px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  animation: modalFadeIn 0.3s;
}

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

.modal-close-btn {
  background-color: #609ccc;
  color: white;
  border: none;
  padding: 8px 20px;
  margin-top: 15px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  transition: background-color 0.3s;
}

.modal-close-btn:hover {
  background-color: #4a8bbf;
}

/* Mantemos o visual desativado mas permitimos clique */
.disabled-feature {
  opacity: 0.7;
  position: relative;
  cursor: pointer;
}

.disabled-feature:hover {
  opacity: 0.9;
}

/* Estilos para a página de contato */
.contact-page {
  padding-top: 80px;
}

.contact-info-card, .contact-form-card {
  background-color: white;
  border-radius: 8px;
  height: 100%;
}

.contact-info-item {
  padding: 15px;
  border-bottom: 1px solid #eee;
}

.contact-info-item:last-child {
  border-bottom: none;
}

.bg-light-blue {
  background-color: #f0f8ff;
}

/* Ajuste para o mapa */
.contact-map iframe {
  filter: grayscale(20%);
}

.contact_info_title {
  font-weight: bolder;
  letter-spacing: 2px;
  color: #06B0B3;
}

.contact_info_title2 {
  font-weight: bold;
  font-style: oblique;
  font-size: 1.2rem;
  letter-spacing: 2px;
  color: #2B719F;
}

.contact_titles {
  font-size: 1rem;
  font-weight: bold;
  font-style: oblique;
  letter-spacing: 1px;
}

.contact_form_p {
  font-weight: normal;
  color: #2B719F;
}

.submit-contact-button {
  background-color: #2B719F;
}

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

.contact-info-card,
.contact-form-card {
  opacity: 0;
  animation: fadeInUp 1s ease forwards;
}

/* Delay para deixar mais fluido entre os dois blocos */
.contact-form-card {
  animation-delay: 0.3s;
}


@keyframes zoomFadeIn {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.hero-logo {
  opacity: 0;
  animation: zoomFadeIn 1s ease-out forwards;
  animation-delay: 0.5s; /* atraso opcional para suavizar */
}

.hero-section2 {
  height: 100vh;
  background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('../assets/images/bg2.png') center/cover no-repeat;
  text-align: center;
  color: white;
  padding-top: 100px;
  height: auto;
  min-height: 90vh;
}

.about-us-title {
  font-size: 3rem;
  font-weight: bold;
  letter-spacing: 4px;
}

.institute-section {
  background: linear-gradient(to right, #609cc4, #3074a4);
  background-image: url('/assets/images/connections.png'), linear-gradient(to right, #609cc4, #3074a4);
  background-position: right center;
  background-repeat: no-repeat;
  background-size: contain, cover;
  color: white;
  position: relative;
  overflow: hidden;
  z-index: 2;
}

@media (max-width: 768px) {
  .institute-section {
    background-image: linear-gradient(to right, #609cc4, #3074a4); /* remove a imagem */
  }
}

.institute-section h2 {
  margin-top: 5vh;
  color: white;
  font-size: 2rem;
}

.institute-section p {
  color: white;
  font-weight: 300;
  font-size: 1.1rem;
  margin-top: 2vh;
  margin-bottom: 5vh;
}

@media (max-width: 991px) {
  .institute-section {
    background-position: center bottom;
    background-size: cover;
  }
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.reveal-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

.picture-section {
  z-index: 1;
}

.full-width-image {
  width: 100%;
  display: block;
  position: relative;
  z-index: 1;
}

/* Container da imagem com sombras */
.full-width-image-container {
  position: relative;
  overflow: hidden;
}

.full-width-image-container::before,
.full-width-image-container::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 60px;
  z-index: 2;
  pointer-events: none;
}

.full-width-image-container::before {
  top: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), transparent);
}

.full-width-image-container::after {
  bottom: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.3), transparent);
}

/* Slide visual effect */
.slide-down-from-top {
  transform: translateY(-100px);
  transition: transform 1s ease;
}

.slide-down-from-top.visible {
  transform: translateY(0);
}

/* Mobile zoom + cover */
@media (max-width: 768px) {
  .full-width-image {
    height: 50vh;
    object-fit: cover;
    object-position: center;
  }
}

/**/

.our-team-section {
  background-color: #f7f7f7;
  opacity: 0;
  transform: translateY(50px); /* Fica 50px abaixo da posição original */
  transition: transform 0.6s ease-out, opacity 0.6s ease-out;
}

.our-team-section.visible {
  opacity: 1;
  transform: translateY(0); /* Volta à posição original */
}

.team-card {
  background-color: white;
  border: 3px solid #4682b4;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  width: 100%;
}

.team-card:hover {
  transform: translateY(-5px);
  border-color: #c4d82f; /* borda verde no hover */
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5); /* sombra preta suave */
}

.team-caption {
  background: linear-gradient(to bottom, #4078b4, #2e5d8b);
  color: white;
  padding: 1rem;
  text-align: left;
  margin-top: auto; /* ISSO aqui garante que todos fiquem colados no final */
}

/* Modal style */
/* Modal style refinado */
.team-modal {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.modal-content-box {
  background: #f8f9fa;
  padding: 2.5rem;
  border-radius: 10px;
  max-width: 500px;
  width: 90%;
  position: relative;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  max-height: 90vh;
}

.modal-content-box h4 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #333;
}

.modal-content-box p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #555;
  margin-bottom: 1.5rem;
}

.read-more {
  font-size: 0.9rem;
  color: #007BFF;
  text-decoration: none;
  cursor: pointer;
  display: inline-block;
  transition: color 0.3s ease;
}

.read-more:hover {
  color: #0056b3;
}

.close-modal {
  position: absolute;
  top: 12px;
  right: 15px;
  font-size: 22px;
  cursor: pointer;
  color: #777;
  transition: color 0.2s;
}

.close-modal:hover {
  color: #000;
}

.our-team-title {
  color: #2b729f;
  font-weight: bold;
  letter-spacing: 4px;
}

.our-team-person-title {
  font-style: oblique; 
  opacity: 0.7;
}

.team-card-wrapper {
  display: inline-block;
  text-align: left; /* ou center se quiser centralizado */
}

.col-md-4 {
  display: flex;
}

.team-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-start; /* ou space-between */
  height: 100%;
  width: 100%;
}

.team-card img {
  width: 100%;
  height: auto; /* mantém a proporção da imagem */
  display: block;
}

.team-caption {
  margin-top: auto;
}

.our-team-person-name {
  font-size: 1.1rem;
}

.our-team-modal-person-name {
  font-size: 1rem;
  font-weight: bold;
  opacity: 0.89;
}

.modal-content-box {
  max-height: calc(80vh - 40px); /* Considera o espaço do botão */
  padding-top: 40px; /* Espaço para o botão no topo */
  overflow-y: auto;
}

.bright-section {
  background-color: #589cc8; /* tom azul igual ao da imagem */
  padding-top: 150px;
  padding-bottom: 60px;
  padding-right: 20px;
  padding-left: 20px;
}

.bright-content {
  background-color: #ffffff;
  border-radius: 8px;
  padding: 40px 20px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

.bright-text h2 {
  font-size: 2.5rem;
  letter-spacing: 2px;
  color: #2b729f;
  font-weight: 700;
}

.bright-text h4 {
  font-size: 1.7rem;
  letter-spacing: 2px;
  color: #2b739fc7;
  font-weight: 600;
  margin-top: 2rem;
}

.bright-logo {
  text-align: center;
  box-shadow: 0px;
}

.bright-logo img {
  max-width: 350px;
  height: auto;
}

@media (max-width: 768px) {
  .bright-content {
    flex-direction: column;
    text-align: center;
  }
  .bright-text {
    margin-bottom: 20px;
  }
  .bright-text h2 {
    font-size: 1.5rem;
  }
}

.brightlab-research-section {
  background-color: #589cc8;
  padding: 4rem 1rem;
}

.brightlab-container {
  max-width: 1300px;
  margin: 0 auto;
  background-color: #ffffff; /* Fundo branco envolvendo tudo */
  border-radius: 8px;
  overflow: hidden;
}

.brightlab-info-box {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  margin-bottom: 0;
}

.brightlab-image-wrapper {
  flex: 0 0 30%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.pressable-person-card {
  cursor: pointer;
}

.brightlab-image-wrapper img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.brightlab-image-label {
  background-color: #ffa41c;
  width: 100%;
  padding: 1.2rem;
  text-align: left;
  color: white;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.brightlab-image-label h5 {
  margin: 0;
  font-size: 0.85rem;
  font-weight: bold;
  letter-spacing: 1px;
}

.brightlab-image-label h4 {
  margin: 0.5rem 0 0 0;
  font-size: 1.1rem;
  font-weight: 600;
}

.brightlab-image-label p {
  margin: 0.25rem 0 0 0;
  font-size: 1rem;
  font-style: italic;
}

.brightlab-text-wrapper {
  flex: 1 1 70%;
  background-color: #f8f6f1; /* Bege claro */
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.3);
}

.brightlab-text-card {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  padding: 5vh;
}

.brightlab-text-card h2 {
  margin-bottom: 1.5rem;
  font-size: 1.8rem;
  font-weight: 700;
  color: #333;
}

.brightlab-text-card p {
  font-size: 1.3rem;
  line-height: 1.6;
  color: #555;
  margin-bottom: 1rem;
  letter-spacing: 2px;
}

/* Responsividade */
@media (max-width: 768px) {
  .brightlab-info-box {
    flex-direction: column;
  }
  
  .brightlab-image-wrapper, 
  .brightlab-text-wrapper {
    width: 100%;
  }
  
  .brightlab-text-wrapper {
    padding: 1.5rem;
  }

  .brightlab-text-card p {
    font-size: 1rem;
  }
}

  /* Custom animations to ensure elements stay visible after animating */
  .animate__animated.animate__fadeInLeft, 
  .animate__animated.animate__fadeInRight {
    animation-fill-mode: both;
  }
  
  .brightlab-info-box {
    display: flex;
    flex-direction: column;
  }
  
  @media (min-width: 768px) {
    .brightlab-info-box {
      flex-direction: row;
    }
  }

  /* New vision section styles - integrated with container */
  .brightlab-vision-content {
    padding: 4rem 10rem;
    border-top: 1px solid #eaeaea;
  }

  .brightlab-vision-content h4 {
    color: #589cc8;
    font-weight: 700;
    font-style: oblique;
    font-size: 1.2rem;
    margin-top: 2rem;
  }

  .brightlab-vision-content h1 {
    color: #589cc8;
    font-size: 2.2rem;
    margin-bottom: 2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
  }

  .brightlab-vision-content p {
    color: #555;
    font-size: 1.2rem;
    line-height: 1.8;
    text-align: justify;
    margin: 0 auto;
    letter-spacing: 0.5px;
  }

  /* Responsiveness */
  @media (max-width: 768px) {
    .brightlab-vision-content {
      padding: 2rem 1.5rem;
    }
    
    .brightlab-vision-content h1 {
      font-size: 1.8rem;
    }
    
    .brightlab-vision-content p {
      font-size: 1rem;
    }
  }

  /*****/

  .brightlab-core-values {
    background-color: white;
    padding: 4rem 5rem;
  }
  
  .core-values-container {
    margin: 0 auto;
    padding: 0 5rem;
    background-color: #f5f5f5;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
    padding-bottom: 2rem;
  }

  .core-values-title-container {
    position: relative;
    top: -35px;
    left: 50%;
    transform: translateX(-50%);
    width: fit-content;
    background-color: white;
    margin-bottom: -20px;
  }
  
  .brightlab-core-values h1 {
    color: #ffffff;
    background-color: #f9a01a;
    padding: 1rem 8rem;
    max-width: 800px;
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 3rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
  }
  
  .value-item {
    margin-bottom: 3rem;
  }
  
  .value-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
  }

  .value-title-container {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
  }
  
  .value-title {
    color: #f9a01a;
    font-weight: bold;
    font-size: 1.2rem;
    white-space: nowrap;
    padding-right: 15px;
  }
  
  .value-line {
    flex-grow: 1;
    height: 1px;
    margin-bottom: 10px;
    background-color: #f9a01a;
  }
  
  .value-description p {
    color: #555;
    font-size: 1.2rem;
    line-height: 1.8;
    margin: 0;
    border-left: 3px solid #f5f5f5;
  }

  
  @media (max-width: 768px) {
    .brightlab-core-values {
      padding: 2rem 0;
    }
    
    .brightlab-core-values h1 {
      font-size: 2rem;
      margin-bottom: 2rem;
    }
    
    .value-title {
      font-size: 1.3rem;
    }
    
    .value-description p {
      font-size: 1rem;
      padding-left: 1rem;
    }
      
    .core-values-container {
      padding: 0 1rem;
    }

    .value-title {
      font-size: 1rem;
    }
  }

  .research-lines-section {
    background-color: white;
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
  }
  
  .research-lines-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 50px;
  }
  
  .research-cards-wrapper {
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
    position: relative;
    height: auto;
    border-radius: 8px;
  }
  
  .research-cards {
    display: flex;
    transition: transform 0.5s ease;
  }
  
  .research-card {
    min-width: 100%;
    background-color: #f5f5f5;
    border-radius: 8px;
    padding: 2rem;
    transition: all 0.5s ease;
    position: absolute;
    opacity: 0;
    transform: translateX(100%);
  }  

  .research-card h4 {
    font-weight: 700;
    font-size: 1rem;
  }
  
  .research-card.active {
    position: relative;
    opacity: 1;
    transform: translateX(0);
  }
  
  .research-card.next {
    transform: translateX(100%);
  }
  
  .research-card.prev {
    transform: translateX(-100%);
  }

  .section-header h1 {
    background-color: #ffa41c;
    font-weight: 700;
    color: #fff;
    padding: 1rem 2rem;
    font-size: 2rem;
    margin-bottom: 2rem;

  }
  
  .research-card h3 {
    color: #f9a01a;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    padding-left: 1.5rem;
  }
  
  .research-card h3::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 24px;
    background-color: #f9a01a;
  }
  
  .research-card p {
    color: #555;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
  }
  
  .scroll-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background-color: white;
    border: 2px solid #f9a01a;
    border-radius: 50%;
    color: #f9a01a;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
  }
  
  .scroll-btn:hover {
    background-color: #f9a01a;
    color: white;
  }
  
  .left-btn {
    left: 0;
  }
  
  .right-btn {
    right: 0;
  }
  
  .cards-indicators {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
    gap: 10px;
  }
  
  .indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ddd;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  .indicator.active {
    background-color: #f9a01a;
  }
  
  /* Responsividade */
  @media (max-width: 768px) {
    .section-header h1 {
      color: #333;
      font-size: 2.5rem;
      text-align: center;
      margin-bottom: 3rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 2px;
      position: relative;
      background-color: #ffffff;
      padding: 0rem 0rem;
    }
    
    .section-header h1::after {
      content: "";
      display: block;
      width: 100px;
      height: 4px;
      background-color: #f9a01a;
      margin: 1rem auto 0;
    }

    .section-header h1 {
      font-size: 1.5rem;
    }
    
    .research-lines-container {
      padding: 0 30px;
    }
    
    .scroll-btn {
      width: 30px;
      height: 30px;
      font-size: 1rem;
    }
    
    .research-card {
      padding: 1.5rem;
    }
  }

  .person-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.6);
  }
  
  .person-modal-content {
    background-color: #fff;
    margin: 10% auto;
    padding: 30px;
    border-radius: 10px;
    width: 80%;
    max-width: 700px;
    position: relative;
    animation: fadeIn 0.3s ease-in-out;
  }
  
  .person-modal-close {
    position: absolute;
    top: 10px;
    right: 20px;
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
  }
  
  .person-modal-close:hover {
    color: #000;
  }
  
  .highlighted-paragraph {
    max-width: 60%;
    margin: -2.5rem auto;
    padding: 2rem;
    border: 4px solid #f39c12; /* laranja */
    background-color: #f9f9f9;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    border-radius: 4px;
  }
  
  .highlighted-paragraph p {
    margin: 0;
    font-size: 1rem;
    color: #333;
    line-height: 1.6;
  }

 @media (max-width: 768px) {      
  .highlighted-paragraph {
    max-width: 90%;
    margin: 0rem auto;
    padding: 0.2rem;
    border: 4px solid #f39c12; /* laranja */
    background-color: #f9f9f9;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    border-radius: 4px;
  }
}
  