#myVideo {
    object-fit: cover;
    object-position: left top;
    min-height: 100vh;
    width: 100vw;
    position: fixed;
    z-index: -1;
    filter: brightness(40%);
}

header {
    position: sticky;
    top: 0;
    z-index: 10;
}


nav {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    min-height: 80px;
    align-items: center;
    justify-content: space-between;
    background-color: #fffafa;
    box-sizing: border-box;
  }
  

  nav .content-fluid {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 1.25rem 1rem;
  }
  
  /* Conteúdo dentro do nav */
  nav .content {
    height: auto;
    max-height: 60px; /* ↓ reduzida para responsividade */
    padding: 0 1rem;
    width: auto;
    max-width: 80%; /* impede que ultrapasse o espaço */
    object-fit: contain;
  }
  
  /* Container principal com elementos de navegação */
  nav .content-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2rem;
  }
  
  /* Container das opções de navegação */
  nav .div {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 3rem;
    width: auto;
    margin-right: 45px;
  }
  
  /* Estilo dos links de navegação */
  nav .link-text {
    font-family: "Microsoft Sans Serif", Helvetica;;
    font-weight: 700;
    color: #333;
    font-size: 1rem; /* Tamanho de fonte mais flexível */
    line-height: 1.5rem;
    white-space: nowrap;
    cursor: pointer;
    user-select: none;
    -webkit-user-select: none; /* Para Safari */
    -ms-user-select: none;     /* Para IE */
    cursor: pointer;
  }

  nav .link-text:hover {
    color: #68bfc7;
    border-bottom: 2px solid #68bfc7;
  }
  
  /* Dropdown do link */
  nav .nav-link-dropdown {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
  }
 
  /* Ícone do dropdown */
  nav .chevron-down {
    width: 0.8rem; 
    height: 0.8rem;
  }

  nav .chevron-up {
    width: 0.8rem; 
    height: 0.8rem;
  }
  
  /* Estilo do botão */
  nav .button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1.25rem;
    background-color: #68bfc7;
    border: 1px solid #68bfc7;
    border-radius: 1rem;
    color: #fff;
    font-size: 1rem;
    cursor: pointer; 
    transition: background-color 0.3s ease;
  }
  
  nav .button:hover {
    background-color: #4f9b9e; /* Cor de fundo ao passar o mouse */
  }

  nav .buttonOut {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1.25rem;
    background-color: #68bfc7;
    border: 1px solid #68bfc7;
    color: #fff;
    font-size: 1rem;
    cursor: pointer; 
    transition: background-color 0.3s ease;
  }
  
  nav .buttonOut:hover {
    background-color: #4f9b9e; /* Cor de fundo ao passar o mouse */
  }
  
  /* Estilo do texto dentro do botão */
  nav .text-wrapper {
    font-family: "Microsoft Sans Serif", Helvetica;
    font-weight: 400;
    color: #fff;
    font-size: 1rem;
    line-height: 1.5rem;
    text-align: center;
  }

  nav .user-info {
    display: flex;
    align-items: center;
    font-weight: 700;
    gap: 0.5rem;
    color: #333;
    font-size: 1rem;
    line-height: 1.5rem;
    font-family: "Arial-Bold", Helvetica;
    margin-right: 1rem;
    margin-left: 2rem;
  }
  
  nav .user-icon {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
  }

  
  /* Responsividade */
  @media (max-width: 1200px) {
    nav {
      padding: 0 1rem;
      height: 12vh;
    }
  
    nav .content {
      width: 25vw;
    }
  
    nav .div {
      gap: 1rem;
    }
  
    nav .div-2 {
      gap: 1rem;
    }
  
    nav .link-text {
      font-size: 0.9rem;
    }
  
    nav .actions {
      gap: 0.5rem;
    }
  }

  .nav-link-dropdown {
    position: relative;
    cursor: pointer;
  }


  .dropdown-content {
    display: none;
    position: absolute;
    top: 140%;
    right: 50%;
    transform: translateX(50%);
    background-color: #fffafa;
    min-width: 150px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    z-index: 20;
  }
  
  .dropdown-item {
    padding: 0.75rem 1rem;
    font-family: "Microsoft Sans Serif", Helvetica;
    font-weight: 700;
    font-size: 0.95rem;
    line-height: 1.5rem;
    color: #333;
    white-space: nowrap;
  }
  
  .dropdown-item:hover {
    background-color: #eee;
    color: #68bfc7;
  }



  nav .nav-programas-dropdown {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
  }


  .nav-programas-dropdown {
    position: relative;
    cursor: pointer;
  }

  nav .chevron-down-programas {
    width: 0.8rem; 
    height: 0.8rem;
  }

  nav .chevron-up-programas {
    width: 0.8rem; 
    height: 0.8rem;
  }

  .menu {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 24px;
    position: absolute;
    top: 140%;
    right: 50%;
    transform: translateX(50%);
    background-color: #fffafa;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    z-index: 20;
  }

  .menu .menu-item {
    display: flex;
    width: 100%;
    align-items: flex-start;
    gap: 12px;
    padding: 8px 0;
    position: relative;
    flex: 0 0 auto;

  }

  .menu .menu-item:hover {
    background-color: #eee;
  }

  .menu .icon {
    width: 24px;
    height: 24px;
    position: relative;
    flex-shrink: 0;
  }


  .icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    flex-shrink: 0;
  }


  .menu .menu-item img,
.menu .menu-item i {
  width: 24px;
  height: 24px;
  display: inline-block;
  flex-shrink: 0;
  object-fit: contain;
  vertical-align: middle;
  margin-top: 2px; /* afina visualmente conforme necessário */
}

  .menu .contentProgramas {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex-grow: 1;
  }


  .menu .text-wrapper {
    position: relative;
    margin-top: -1.00px;
    font-family: "Microsoft Sans Serif", Helvetica;
    font-weight: 700;
    font-size: 0.95rem;
    line-height: 1.5rem;
    color: #68bfc7;
    white-space: nowrap;
    text-align: left;      
    padding-left: 0;       
    margin-left: 0; 
    white-space: nowrap;
  }

  .menu .divProgramas {
    position: relative;
    align-self: stretch;
    margin-top: -1.00px;
    font-family: "Microsoft Sans Serif", Helvetica;
    font-weight: 700;
    font-size: 0.95rem;
    line-height: 1.5rem;
    color: #333;
    white-space: nowrap;
    padding-right: 10px; 
    white-space: nowrap;
  }

.hamburger {
  display: none !important;
}

/* Estilo do menu móvel */
.mobile-menu {
  display: none;
  position: fixed;  /* para ocupar toda a viewport e não só dentro do nav */
  top: 60px;        /* abaixo da navbar (altura da navbar) */
  left: 0;
  width: 100vw;     /* largura total da viewport */
  height: calc(100vh - 60px); /* altura total menos a navbar */
  background-color: #fffafa;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  padding: 2rem 0;
  z-index: 9999;
  flex-direction: column;
  align-items: center; /* centraliza horizontalmente */
  overflow-y: auto; /* se a lista for longa, permite scroll vertical */
}

/* Mostrar menu */
.mobile-menu.active {
  display: flex;
}

/* Itens do menu centrados e espaços iguais */
.mobile-menu .link-text,
.mobile-menu .button {
  width: 90%;
  max-width: 400px;
  text-align: center;
  font-size: 1.2rem;
  padding: 1rem 0;
  border-bottom: 1px solid #ddd;
  cursor: pointer;
  color: #333;
  user-select: none;
  transition: background-color 0.3s ease;
}

/* Último item não tem border */
.mobile-menu .link-text:last-child,
.mobile-menu .button:last-child {
  border-bottom: none;
}

/* Hover simples e suave */
.mobile-menu .link-text:hover,
.mobile-menu .button:hover {
  background-color: #e0f2f5;
  color: #00585c;
  border-radius: 8px;
}

/* Botões Login/Logout estilizados */
.mobile-menu .button {
  background-color: #68bfc7;
  border: 1px solid #68bfc7;
  color: white;
  border-radius: 1rem;
  font-weight: 600;
  margin-top: 1.5rem;
  padding: 0.75rem 1rem;
}

.mobile-menu .button:hover {
  background-color: #4f9b9e;
  border-color: #4f9b9e;
}
  
  @media (max-width: 768px) {
  nav {
    flex-direction: row; /* manter horizontal */
    padding: 0 1rem;
    height: 60px;
  }

  nav .content-wrapper {
    flex: 1;
    justify-content: space-between;
    align-items: center;
  }

  nav .div {
    display: none; /* esconder menu normal no tablet, vamos mostrar no telemóvel */
  }

  nav .button {
    display: none;
  }
  
  /* Logo reduzida */
  nav .content {
    max-height: 50px;
    width: auto;
  }
  
  .hamburger {
    display: flex !important;
  }
  /* Opcional: ajustar links se mostrar */
}

/* --- Telemóvel: max-width 480px --- */
@media (max-width: 480px) {
  nav {
    position: relative;
    padding: 0 1rem;
    height: 60px;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  nav .content-wrapper {
    padding: 0 1rem;
  }

  nav .content {
    max-height: 40px;
    max-width: 50%;
  }

  /* Esconder menu original e botões */
  nav .div,
  nav .button,
  nav .user-info {
    display: none;
  }

  #a-login {
    display: none;
  }

  /* Mostrar botão hamburguer */
  nav .hamburger {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    width: 40px;
    height: 40px;
    font-size: 1.8rem;
    margin-left: auto;
    z-index: 1100;
  }

  /* Menu móvel escondido por padrão */
  nav .mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background-color: #fffafa;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    width: 220px;
    flex-direction: column;
    padding: 1rem;
    z-index: 1000;
  }

  nav .mobile-menu.active {
    display: flex;
  }

  nav .mobile-menu .link-text,
  nav .mobile-menu .dropdown-item {
    font-size: 1rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid #ddd;
    cursor: pointer;
  }

  nav .mobile-menu .link-text:last-child,
  nav .mobile-menu .dropdown-item:last-child {
    border-bottom: none;
  }

  nav .mobile-menu .button {
    width: 100%;
    margin-top: 1rem;
    padding: 0.75rem;
    font-size: 1rem;
    border-radius: 1rem;
    background-color: #68bfc7;
    border: 1px solid #68bfc7;
    color: #fff;
    text-align: center;
    cursor: pointer;
  }

  nav .mobile-menu .button:hover {
    background-color: #4f9b9e;
  }
}



  /**-------------------------------------------------------------------------------------------------------**/

:root{
    --mentha-blue: #4EB4BE;
    --mentha-blue-dark: #1e7d85;
}

#aplicacoes .aplicacao:hover,
#programa .caixa {
  cursor: pointer;
}



#mentha-cog
#a-videoconferencia,
#a-logout {
    display: none;
}

.espacolista,
div.hero {
    height: calc(100vh - 6em - 7em);
    width: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    position: relative;
    display: flex;
    padding: 3em 0;
    align-items: center;
    justify-content: flex-start;
}

.espacolista {
    height: 0;
    padding: 1em 0;
}

.slogan {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 5vw;
}

.slogan .tituloSlogan {
    font-weight: 700;
    font-size: clamp(2rem, 6vw, 96px);
    color: #4EB4BE;
    text-align: left;
    font-family: "Roboto-Bold", Helvetica;
    margin-bottom: 1px;

}

.slogan .textoSlogan {
    font-size: clamp(1rem, 3.5vw, 35px);
    color: whitesmoke;
    line-height: 1.5;
    text-align: left;
    max-width: 40ch;
    font-family: "Roboto-Bold", Helvetica;
    font-weight: 500;
    margin-bottom: 1px;
}


@media (max-width: 480px) {


  div.hero {
    height: calc(110vh - 7em - 7em);
}

  .slogan .tituloSlogan,
  .slogan .textoSlogan {
    text-align: center;
  }

  .slogan {
    align-items: center;
  }
}

/**-------------------------------------------------------Home (footer)---------------------------------------------**/

.footer-logo {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  padding: clamp(1em, 4vw, 2em) clamp(1em, 5vw, 6em); /* padding vertical e horizontal responsivo */
  background-color: white;
  width: 100%;
  box-sizing: border-box;
  flex-wrap: wrap;
  gap: clamp(1em, 4vw, 2em);
  min-height: clamp(5em, 12vh, 10em); /* <- altura mínima flexível */
}
.footer-block {
  flex: 0 1 340px;
  max-width: 400px; /* <- controla o crescimento excessivo */
  display: flex;
  align-items: center;
  gap: clamp(10px, 3vw, 30px);
  justify-content: center;
  flex-wrap: wrap;
  text-align: center;
}

.footer-logo .footer-block:nth-child(2) {
  justify-content: center;
}

.footer-logo .footer-block:nth-child(3) {
  justify-content: flex-end;
}

.footer-logo .heading {
  font-size: clamp(0.8rem, 1.2vw, 1em); /* responsivo */
  color: #000000;
  font-weight: 700;
  font-family: "Microsoft Sans Serif", Helvetica;
  white-space: nowrap;
}

.footer-logo .logo {
  height: clamp(2.5em, 3.5vw, 3.5em);
  width: clamp(6em, 10vw, 12em);
}

.logo-carousel {
  overflow: hidden;
  width: clamp(6em, 10vw, 12em); /* igual ao logo */
  height: clamp(2.5em, 3.5vw, 3.5em); /* igual ao logo */
  position: relative;
  display: flex;
  align-items: center;
}

.logo-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
  will-change: transform;
}

.logo-carousel .logo {
  flex-shrink: 0;
  width: clamp(6em, 10vw, 12em);
  height: clamp(2.5em, 3.5vw, 3.5em);
}


@media (max-width: 480px) {
  .logo-carousel {         /* largura total do container */
    max-width: 280px;    /* limite máximo para o carousel */
    overflow: hidden;    /* esconde o que passar */
    margin: 0 auto;      /* centraliza horizontalmente */
  }

  .logo-track {
    display: flex;
    width: 100%;  
    transition: transform 0.5s ease-in-out;
    will-change: transform;       /* largura igual container */
    /* NÃO definir transition ou transform se não tiver JS */
  }

  .logo {
    flex: 0 0 100%;      /* cada logo ocupa 100% do container */
    max-width: 100%;
    height: auto;
  }

  .footer-logo .footer-block {
    justify-content: center !important;
  }

  .footer-logo .heading {
  display: none;
}

.footer-logo {
  flex-wrap: nowrap;
  
}
  
  
}

/**--------------------------------------------Home (Info)-----------------------------------------------------------**/

.info {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: clamp(30px, 8vw, 100px) clamp(20px, 5vw, 80px);
  width: 100%;
  gap: clamp(20px, 5vw, 60px);
  background-color: white;
}

.info .section-title {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  gap: clamp(2em, 10vw, 10em); /* responsivo */
  flex-wrap: wrap;
}

.info .column {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 1em;
  flex: 1;
}

.info .heading {
  font-family: "Microsoft Sans Serif", Helvetica;
  font-weight: 700;
  font-size: clamp(1.5rem, 3vw, 2.9rem); /* <- mais responsivo */
  color: #4EB4BE;
  margin-bottom: 1px;
  text-align: left;
}

.info .text-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1em;
  flex: 1;
  width: 100%;
}

.info .text {
  font-family: "Microsoft Sans Serif", Helvetica;
  font-weight: 400;
  font-size: clamp(1rem, 2vw, 1.1rem); /* 16px–22px */
  color: #000;
  line-height: 1.5;
  text-align: center;
  user-select: none;
  margin-bottom: 1px;
}


/* Media Queries para tablets e mobile */


@media (max-width: 480px) {

  .info {
    padding: clamp(20px, 1vw, 80px) clamp(10px, 8vw, 40px);
    gap: clamp(15px, 3vw, 40px);
  }

  .info .section-title {
  display: contents;
}

  /* Centro do título */
  .info .heading {
    text-align: center;
    font-size: clamp(0.9rem, 1.3vw, 1rem);
  }

  /* Textos ligeiramente menores */
  .info .text {
    font-size: clamp(0.9rem, 1.8vw, 1rem); /* reduz um pouco o tamanho */
  }


}


/**--------------------------------------------Home (Videos)-----------------------------------------------------------**/

.container-video {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: clamp(40px, 8vw, 120px);
  width: 100%;
  background-image: url("/static/mentha/icones/backgroudMent1.png");
  background-size: cover;
  background-position: 50% 50%;
  position: relative;
  overflow: hidden;
}

.container-video .content {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 5vw, 4rem);
  width: 100%;
  align-items: center;
  justify-content: center;
}

.container-video .row-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(2rem, 5vw, 6rem);
  width: 100%;
}

.container-video .row {
  display: flex;
  width: 100%;
  align-items: flex-end;
  gap: 48px;
  flex: 0 0 auto;
}

.container-video .column {
  flex: 1 1 300px;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5rem;
}

.container-video .video {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: none;
  border-radius: 8px;
  object-fit: cover;
}

.container-video .div {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
}

.container-video .content-text {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  width: 100%;
}

.container-video .heading {
  font-family: "Arial-Bold", Helvetica;
  font-weight: 700;
  font-size: clamp(1.25rem, 2.5vw, 1.6rem);
  color: black;
  line-height: 1.4;
  margin-bottom: 0.5rem;
}

.container-video .text {
  font-family: "Arial", Helvetica;
  font-weight: 400;
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: white;
  line-height: 1.6;
  text-align: left;
  margin-bottom: 0.5rem;
}

.container-video .action {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
}


.container-video .button {
  all: unset;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: "Arial-Bold", Helvetica;
  font-weight: 700;
  font-size: clamp(1rem, 1.8vw, 1.125rem);
  color: black;
  border-bottom: 2px solid transparent;
  transition: border 0.3s ease, color 0.3s ease;
}

.container-video .text-wrapper{
  all: unset;
  box-sizing: border-box;
  width: fit-content;
  font-family: "Arial-Bond", Helvetica;
  white-space: nowrap;
  font-weight: 700;      /* de 100 (mais fino) até 900 (mais grosso) */
  font-size: 18px;
  line-height: 1.5;
}

.container-video .button:hover {
  color: black;
  border-bottom: 2px solid black;
}

.container-video .icon-chevron-right {
  width: 1rem;
  height: 1rem;
}

/**--------------------------------------------Parceiros-----------------------------------------------------------**/

.parcerias {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 7% 7% 7% 0%;
  gap: 4rem;
  background-color: white;
  width: 100%;
  box-sizing: border-box;
}

.parcerias .container {
  display: flex;
  /**flex-wrap: wrap;**/
  justify-content: space-between;
  gap: 6rem;
  width: 90%;
  box-sizing: border-box;
  margin-left: 0;
  margin-right: 0;
}

.parcerias .content {
  width: 1rem;
  min-height: 500px;
  background-color: #68bfc7;
  border-radius: 12px;
}

.parcerias .div {
  flex: 1 1 600px;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: flex-start;
  margin-right: 10rem;
}

.parcerias .content-2 {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  width: 100%;
}

.parcerias .heading {
  font-family: "Microsoft Sans Serif", Helvetica, sans-serif;
  font-weight: 700;
  color: #68bfc7;
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: clamp(2.2rem, 3.5vw, 3.5rem);
}

.parcerias .text {
  font-family: "Microsoft Sans Serif", Helvetica, sans-serif;
  font-weight: 400;
  color: black;
  font-size: clamp(1rem, 2vw, 1.125rem);
  line-height: clamp(1.4rem, 2.5vw, 1.8rem);
}

.parcerias .actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.parcerias .button {
  all: unset;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border: 1px solid black;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.parcerias .button:hover {
  background-color: #f0f0f0;
}

.parcerias .text-wrapper {
  font-family: "Microsoft Sans Serif", Helvetica, sans-serif;
  font-weight: 400;
  color: black;
  font-size: clamp(1rem, 1.8vw, 1.125rem);
  line-height: clamp(1.2rem, 2vw, 1.5rem);
  white-space: nowrap;
}

.parcerias .column {
  flex: 1 1 350px;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  align-items: center;
}

.parcerias .row,
.parcerias .img-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 8em;
}

.parcerias .image {
  max-width: 100%;
  height: auto;
  object-fit: contain;
  max-height: 6em;
}

@media (max-width: 480px) {
  .parcerias {
    padding: 10% 5%; /* reduzir um pouco o padding */
    gap: 2.5rem;
  }

  .parcerias .container {
    flex-direction: column;
    justify-content: center;
    gap: 0.1rem;
    width: 100%;
  }

  .parcerias .content {
    display: none; /* esconde o bloco azul decorativo para poupar espaço */
  }

  .parcerias .div {
    flex: 1 1 100px;
    margin-right: 0;
    align-items: center; /* centraliza conteúdo textual */
    text-align: center;
  }

  .parcerias .content-2 {
    width: 100%;
    gap: 0.1rem;
  }

  .parcerias .heading {
    font-size: clamp(1.5rem, 5vw, 2.5rem);
  }

  .parcerias .text {
    font-size: clamp(0.9rem, 3vw, 1.1rem);
    max-width: 90%;
    margin: 0 auto;
  }

  .parcerias .actions {
    justify-content: center;
  }

  .parcerias .button {
    padding: 0.75rem 2rem;
  }

  .parcerias .column {
    flex: 1 1 250px;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    width: 100%;
  }

  .parcerias .row,
  .parcerias .img-wrapper {
    width: 45%; /* duas logos por linha */
    height: auto;
    justify-content: center;
    margin-bottom: 1rem;
  }

  .parcerias .image {
    max-height: 4.5em;
    width: auto;
  }
}

/**--------------------------------------------Enquadramento-----------------------------------------------------------**/

.enquadramento {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 120px 64px;
  width: 100%;
  gap: 80px;
  background-image: url("/static/mentha/icones/backgroudMent1.png");
  background-size: cover;
  background-position: 50% 50%;
}

.enquadramento .container {
  display: flex;
  width: 100%;
  align-items: center;
  gap: 80px;
  align-self: stretch;
  flex: 0 0 auto;
}

.enquadramento .image-enquadramento {
  object-fit: cover;
  width: clamp(280px, 42vw, 640px);   /* largura responsiva */
  height: clamp(280px, 42vw, 640px);  /* altura responsiva igual à largura */
  max-width: 640px;
  max-height: 640px;
  flex-shrink: 0;
}

.enquadramento .content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  flex: 1 1 auto;
  max-width: clamp(280px, 200vw, 640px); /* largura responsiva */
  width: 100%;
}

.enquadramento .heading {
  font-family: "Roboto-Bold", Helvetica;
  font-weight: 700;
  color: white;
  font-size: clamp(1.8rem, 3.2vw, 3.2rem);
  line-height: clamp(2rem, 4.2vw, 3rem);
  align-self: stretch;
}

.enquadramento .text {
  font-family: "Microsoft Sans Serif", Helvetica;
  font-weight: 400;
  color: black;
  font-size: clamp(1rem, 2.5vw, 1.1rem);
  line-height: clamp(1.4rem, 3vw, 1.8rem);
  align-self: stretch;
} 

.enquadramento .text-wrapper {
  color: black;
}

.enquadramento .span{
  color: white;
}

@media (max-width: 480px) {
  .enquadramento {
    padding: 60px 24px;
    gap: 40px;
    background-position: center;
  }

  .enquadramento .container {
    flex-direction: column;
    align-items: center;
    gap: 32px;
  }

  .enquadramento .image-enquadramento {
    width: clamp(200px, 80vw, 300px);
    height: auto;
  }

  .enquadramento .content {
    align-items: center;
    text-align: center;
    max-width: 100%;
  }

  .enquadramento .heading {
    font-size: clamp(1.5rem, 6vw, 2.2rem);
    line-height: 1.4;
  }

  .enquadramento .text {
    font-size: clamp(0.95rem, 4vw, 1.05rem);
    line-height: 1.6;
    text-align: center;
  }

  .enquadramento .text-wrapper,
  .enquadramento .span {
    display: inline;
  }
}

/**--------------------------------------------Objetivos-----------------------------------------------------------**/


.objetivos {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  /* padding responsivo: mínimo 40px, ideal 10vw, máximo 140px */
  padding: clamp(40px, 10vw, 70px) clamp(20px, 5vw, 80px);
  width: 100%;
  background-color: white;
}

/* Título + texto lado a lado (desktop) */
.objetivos .section-title {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  gap: 30px;      /* menor gap para não “quebrar” em telas médias */
  flex-wrap: wrap; /* permite quebrar em múltiplas linhas se necessário */
}

/* Coluna do título */
.objetivos .column {
  display: flex;
  align-items: flex-start;
  gap: 60px;
  flex: 1;
}

/* Título com cor e peso */
.objetivos .heading {
  font-family: "Microsoft Sans Serif", Helvetica;
  font-weight: 700;
  font-size: clamp(2rem, 5vw, 5em);
  color: #4EB4BE;
  flex: 0 0 auto;
}

/* Wrapper do texto */
.objetivos .text-wrapper {
  display: flex;
  justify-content: center;
  align-items: center; /* centraliza em telas estreitas */
  gap: 60px;
  width: 100%;
}

/* Parágrafo de corpo */
.objetivos .text {
  font-family: "Microsoft Sans Serif", Helvetica;
  font-weight: 400;
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: #000;
  line-height: 1.5;   /* valor relativo para responsividade */
  user-select: none;  /* previne seleção indesejada */
  margin-bottom: 1px;
}

.objetivos .text-black {
  color: black;
}

.objetivos .span{
  color: #68bfc7;
}

.objetivos .action{
  display: flex;
  align-items: center;
  gap: 8px;
  align-self: center;
  width: 62%;
  flex: 0 0 auto;
  cursor: pointer;
  margin-top: 40px;
}

.objetivos .button {
  all: unset;
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex: 0 0 auto;
}

.objetivos .text-wrapper-ver-mais{
  all: unset;
  box-sizing: border-box;
  width: fit-content;
  font-family: "Arial-Bond", Helvetica;
  white-space: nowrap;
  font-weight: 700;      /* de 100 (mais fino) até 900 (mais grosso) */
  font-size: clamp(0.9rem, 1.5vw, 1.125rem);
  line-height: 1.5;
}

.objetivos .icon-chevron-right{
  width: 14px;
  height: 14px;
}

.objetivos .action:hover{
  color: #68bfc7;
  border-bottom: 3px solid #68bfc7;
}

@media (max-width: 480px) {
  .objetivos {
    padding: clamp(30px, 6vw, 50px) clamp(15px, 4vw, 30px);
    align-items: center;
  }

  .objetivos .section-title {
    flex-direction: column;
    gap: 40px;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .objetivos .column {
    align-items: center;
    gap: 30px;
  }

  .objetivos .heading {
    font-size: clamp(1.4rem, 5vw, 2rem);
    text-align: center;
  }

  .objetivos .text-wrapper {
    flex-direction: column;
    gap: 24px;
    align-items: center;
  }

  .objetivos .text {
    font-size: clamp(0.9rem, 4vw, 1.05rem);
    line-height: 1.6;
    text-align: center;
  }

  .objetivos .action {
    width: auto;
    margin-top: 0;
  }

  .objetivos .text-wrapper-ver-mais {
    font-size: 0.95rem;
  }

  .objetivos .icon-chevron-right {
    width: 12px;
    height: 12px;
  }
}



/**--------------------------------------------Expectativas-----------------------------------------------------------**/

.expectativas {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 140px 15px;
  width: 100%;
  gap: 80px;
  background-color: white;
  
}

.expectativas .container {
  display: flex;
  width: 100%;
  align-items: center;
  gap: 80px;
  align-self: stretch;
  flex: 0 1 auto;
}

.expectativas .image-expectativas {
  object-fit: cover;
  width: clamp(280px, 42vw, 640px);   /* largura responsiva */
  height: clamp(280px, 42vw, 640px);  /* altura responsiva igual à largura */
  max-width: 640px;
  max-height: 640px;
  flex-shrink: 0;
  margin-right: 30px;
}

.expectativas .content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  flex: 1 ;
  max-width: clamp(280px, 200vw, 640px);
  width: 100%;
}

.expectativas .div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  flex: 1;
  flex-grow: 1;
  align-self: stretch;
}

.expectativas .heading {
  font-family: "Microsoft Sans Serif", Helvetica;
  font-weight: 700;
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  line-height: clamp(1.8rem, 3.5vw, 3.1rem);
  color: #68bfc7;
  align-self: stretch;
}

.expectativas .text {
  font-family: "Microsoft Sans Serif", Helvetica;
  font-weight: 400;
  color: black;
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  line-height: clamp(1.3rem, 2.5vw, 1.8rem);
  align-self: stretch;
}

.expectativas .text-wrapper {
  color: black;
}

.expectativas .span{
  color: #68bfc7;
}

.expectativas .row-wrapper{
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  align-self: stretch;
}

.expectativas .row {
  display: flex;
  width: 100%;
  align-items: flex-start;
  gap: 25px;
  flex: 0 0 auto;
  align-self: stretch;
  padding: 8px 0px;
}

.expectativas .list-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  width: 100%;
  align-self: stretch;
  flex: 1;
  flex-grow: 1;
}

.expectativas .heading-list-item {
  font-family: "Microsoft Sans Serif", Helvetica;
  font-weight: 700;
  font-size: clamp(1rem, 2vw, 1.5rem);
  line-height: clamp(1.3rem, 2.5vw, 2rem);
  color: black;
}

.expectativas .content-2 {
  width: 1rem;
  min-height: 600px;
  background-color: #68bfc7;
  border-radius: 12px;
}

@media (max-width: 480px) {
  .expectativas {
    padding: 60px 20px;
    gap: 40px;
  }

  .expectativas .container {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }

  .expectativas .image-expectativas {
    width: clamp(200px, 80vw, 300px);
    height: clamp(200px, 80vw, 300px);
    margin-right: 0;
  }

  .expectativas .content {
    align-items: center;
    text-align: center;
    gap: 20px;
    max-width: 100%;
  }

  .expectativas .div {
    align-items: center;
    text-align: center;
    gap: 16px;
  }

  .expectativas .heading {
    font-size: clamp(1.3rem, 5vw, 2rem);
    line-height: 1.4;
  }

  .expectativas .text {
    font-size: clamp(0.9rem, 4vw, 1rem);
    line-height: 1.6;
  }

  .expectativas .row-wrapper {
    align-items: center;
  }

  .expectativas .row {
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-left: 0;
  }

  .expectativas .list-item {
    align-items: center;
    text-align: center;
    gap: 12px;
  }

  .expectativas .heading-list-item {
    font-size: clamp(1rem, 4vw, 1.3rem);
    line-height: 1.4;
  }

  .expectativas .content-2 {
    display: none;
  }
}
/**--------------------------------------------Inpacto-----------------------------------------------------------**/

.impacto {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 50px 15px;
  width: 100%;
  gap: 80px;
  background-image: url("/static/mentha/icones/backgroudMent1.png");
  background-size: cover;
  background-position: 50% 50%;
}

.impacto .container {
  display: flex;
  width: 100%;
  min-height: 600px;
  align-items: center;
  gap: 40px;
  align-self: stretch;
  flex: 0 1 auto;
}

.impacto .content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
  flex: 1;
  flex-grow: 1;
}

.impacto .div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
  flex: 0 0 auto;
  align-self: stretch;
  width: 100%;
}

.impacto .div-2 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  flex: 0 0 auto;
  align-self: stretch;
  width: 100%;
}

.impacto .tagline-wrapper {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.impacto .tagline {
  font-family: "Microsoft Sans Serif", Helvetica;
  font-weight: 700;
  font-size: 1rem;
  color: black;
  line-height: 1.4rem;
  align-self: stretch;
  width: fit-content;
  white-space: nowrap;
}

.impacto .content-2 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  align-self: stretch;
  gap: 24px;
  width: 100%;
  flex: 0 0 auto;
}

.impacto .heading {
  font-family: "Microsoft Sans Serif", Helvetica;
  font-weight: 700;
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  line-height: clamp(1.8rem, 4.5vw, 3rem);
  color: white;
  align-self: stretch;
}

.impacto .text {
  font-family: "Microsoft Sans Serif", Helvetica;
  font-weight: 700;
  color: black;
  font-size: clamp(0.85rem, 2.2vw, 1rem);
  line-height: clamp(1.3rem, 2.8vw, 1.8rem);
  align-self: stretch;
}


.impacto .row {
  display: flex;
  width: 100%;
  align-items: flex-start;
  gap: 25px;
  flex: 0 0 auto;
  align-self: stretch;
  padding: 8px 0px;
}

.impacto .list-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  width: 100%;
  align-self: stretch;
  flex: 1;
  flex-grow: 1;
}

.impacto .text-wrapper {
  font-family: "Microsoft Sans Serif", Helvetica;
  font-weight: 700;
  font-size: clamp(1rem, 3vw, 1.2rem);
  line-height: clamp(1.6rem, 3.5vw, 2rem);
  color: white;
}

.impacto .icon {
  width: 35px;
  height: 35px;
  color: black;
}

.impacto .image {
  object-fit: cover;
  flex: 1;
  flex-grow: 1;
  width: clamp(280px, 40vw, 600px);
  height: clamp(280px, 40vw, 600px);
  max-height: 600px;
  margin-right: 30px;
}


@media (max-width: 480px) {
  .impacto {
    padding: 60px 20px;
    gap: 40px;
  }

  .impacto .container {
    flex-direction: column-reverse;
    align-items: center;
    gap: 40px;
    min-height: auto;
  }

  .impacto .image {
    width: clamp(200px, 80vw, 320px);
    height: clamp(200px, 80vw, 320px);
    margin-right: 0;
  }

  .impacto .content {
    align-items: center;
    text-align: center;
    gap: 24px;
  }

  .impacto .div {
    align-items: center;
    text-align: center;
  }

  .impacto .div-2 {
    gap: 20px;
    align-items: center;
  }

  .impacto .tagline {
    font-size: 0.95rem;
    line-height: 1.3rem;
  }

  .impacto .heading {
    font-size: clamp(1.3rem, 6vw, 2rem);
    line-height: 1.4;
  }

  .impacto .text {
    font-size: clamp(0.9rem, 4.5vw, 1rem);
    line-height: 1.6;
  }

  .impacto .row {
    flex-direction: column;
    align-items: center;
    gap: 32px;
    margin-left: 0;
  }

  .impacto .list-item {
    align-items: center;
    text-align: center;
    gap: 12px;
  }

  .impacto .text-wrapper {
    font-size: clamp(1rem, 4.5vw, 1.2rem);
    line-height: 1.5;
  }

  .impacto .icon {
    width: 30px;
    height: 30px;
  }
}








/**--------------------------------------------Antigo-----------------------------------------------------------**/



.next {
    position: absolute;
    bottom: 0;
    width: 100vw;
    font-size: 1.5em;

    color: white;
    padding: 0;
    line-height: 0.9em;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.material-symbols-outlined {
    padding: 0;
    margin: 0;
    font-size: 1.5em;
    color: white;
}

.blue,
.branco {
    font-size: 1em;
    width: 100vw;
    max-width: 900px;
    margin: auto;
    padding: 5ch 5ch;
    border-radius: 1ch;
/*    box-shadow: -5px -5px 9px rgba(255, 255, 255, 0.45), 5px 5px 9px rgba(94, 104, 121, 0.3);
*/
    background: whitesmoke;
    opacity: 0.8;
}

input { font-size: 2em; color:black;}
.blue {
    background: #4EB4BE;
}

.branco {
    background: whitesmoke;
}

.titulo {
    padding: 0.5em 0 0.5em 0;
    font-size: 2em;
    font-weight: bold;
}

.branco .titulo {
    color: #4EB4BE;
}

.blue .titulo {
    color: white;
}

.subtitulo {
    padding: 0.5em 0 0.5em 0;
    font-size: 1.2em;
    font-weight: bold;
}

.blue .subtitulo {
    color: white;
}

.branco .subtitulo {
    color: #4EB4BE;
}

.texto p {
    text-align: justify;
    line-height: 1.5;
    /* margin: 0 0 0.7em 0; */
}

.blue b {
    font-weight: bold;
    color: whitesmoke;
}

.branco b {
    font-weight: bold;
    color: #4EB4BE;
}

li {
    line-height: 1.5;
    margin: 0.7em 0 0.7em 1em;
}

footer {
    font-size: 0.8em;
    height: 4em;
    color: white;
    /* width: 100vw; */
    position: sticky;
    bottom: 0;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    z-index: 3;
    padding: 0 2em;
    background-color: none;
    opacity: 1;
    transition: opacity 0.5s, background-color 0.5s;

}

.close {opacity: 1;}

footer img {
    height: 2em;
}

header,
footer {
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: space-between;
}

footer > * {
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: flex-start;
    padding: 0;
    margin: 0;
}

footer .parceirosfooter {
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: flex-start;
    margin: 0;
}

footer img {
    margin: 0 0 0 8px;
}


/******PARCEIROS******************************/


/* #parceiros {
    display: flex;
    justify-content: center;
    align-items: flex-start;
} */

#parceiros .logo {
    display: block;
    width: 3em;
    margin: 1em;
}

#parceiros a {
    text-decoration: none;
    /* font-weight: 600; */
}

#parceiros .parceiro div.texto {
    display: none;
}

#parceiros .parceiro .subtitulo * {
    display: block;
    text-align: left;
}

#parceiros .parceiro .subtitulo {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    gap: 1em;
}

/****** Equipa ******************************/

/* 
#equipa a {
    text-decoration: none;
    font-weight: 600;
} 
*/

#equipa .descricao {
    display: none;
    padding-left: 35em;
}

#equipa .investigador {
    padding: 2ch 5ch;
}

#equipa .investigador .nome * {
    text-align: left;
}

#equipa .investigador .nome {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    gap: 1em;
}


/******CONTACTO******************************/


#contacto th {
    color: white;
    font-weight: normal;
    text-align: right;
    padding-right: 3px;
    vertical-align: top;
}

#contacto table {
    border-spacing: 0 1em;
}

#contacto [for^="id_nome"]::after,
#contacto [for^="id_email"]::after,
#contacto [for^="id_assunto"]::after,
#contacto [for^="id_mensagem"]::after,
#contacto .nota::before {
    content: ' *';
    font-size: 0.7rem;
    vertical-align: super;
    color: red;
}


#contacto [for^="id_referenciacao"]::after,
#contacto [for^="id_telefone"]::after {
    content: '__';
    font-size: 0.7rem;
    color: #4EB4BE;
}

#contacto .nota {
    font-size: 0.7em;
    color: white;
    font-style: italic;
}

#contacto tr td:nth-child(2) {
    width: 100%;
}

#contacto input {
    color: black;
}

/******HOME INDEX******************************/

#home .parceiros div {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

#home .parceiros .logo {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 1em 0 0;
}

#home .parceiros .logo img {
    display: block;
    width: 2em;
    padding-right: 0.5em;
}

#home .parceiros {
    display: grid;
    grid-template-columns: 4vw 1fr;
    gap: 1vw;
}

#home .parceiros a {
    text-decoration: none;
    font-weight: 600;
    color: #4EB4BE;
}

/******PARCEIROS******************************/

#parceiros {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}

#parceiros span.material-symbols-outlined {
    margin-left: auto;
}

#parceiros .logo {
    display: block;
    width: 3em;
}

#parceiros .subtitulo {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
}

#parceiros a {
    text-decoration: none;
    font-weight: 600;
}

#parceiros .subtitulo {
    text-align: left;
}

#parceiros div.texto {
    display: none;
}


/** noticias ****************************************/

#noticias .subtitulo {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

#noticias .subtitulo .right {
    font-size: 0.7em;
} 

#noticias img {
   display: block;
   width: 50%;
}


#noticias .imagem {
    padding-top: 1em;
    display: flex;
    justify-content: center;
}


/** cronograma *************************************************/


#projeto .cronograma {
    display:block;
}


#projeto .lista {
    display:none;
}

.cronograma {
    position: relative;
  }
  
  .cronograma table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 5px;
}

  .cronograma .agora {
    position:absolute;
    border: 1px solid #4EB4BE;
    filter: brightness(60%);
    height:100%;
    background:white;
    left: calc(40% + 2 / 12 * 60% );
    bottom:0px;
  }
 
  .cronograma td {
    padding: 0.5em;
    text-align:center;
    width: calc( 1 / 12 * 60% );
  }
  
  /* ano alinhado à esquerda */ 
  .cronograma tr:first-child td {
    font-family: consolas;
    text-align:left;
    font-weight: bold;
  }

  /* nomes dos meses em monospace */
  .cronograma tr:nth-child(2) td {
    font-family: consolas;
  }
  
  
  /* primeira coluna */
  .cronograma tr td:first-child {
    text-align:left;
    width:40%;
    font-weight: bold;
    color: #4EB4BE;
  }
  
  .cronograma .task {
    background: whitesmoke;
    border: 1px solid #4EB4BE;
  }
  
  .cronograma .done {
    background: #4EB4BE;
  }

/** APP LIST **********************************************/
.mb-btn{
    color: white!important;
    background-color: var(--mentha-blue)!important;
    border-color: var(--mentha-blue)!important;
}

