*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Beiruti", sans-serif;
    color: whitesmoke;
    text-decoration: none;
}
body{
	line-height: 1.5;
  font-family: "Beiruti", sans-serif;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  background-image: url("../img/fundo_ese.png");
}

/* Estilo do cabeçalho */
header{
  width: 1200px;
  top: 0;
  padding-top: 1.5% ;
  z-index: 99999;
  position: fixed;
  backdrop-filter: brightness(0.5);

}

.conteudo-cabecalho{
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    background: transparent;
}

.logo{
  margin: auto;
  padding: 0.5rem;
}
.logo img{
    max-width: 70px;
}

.nav-bar{
    margin: auto;
    padding: 0.5rem;
}

.dropbtn{
  display: inline-block;
  margin: 0 40px;
  position: relative;
  list-style: none;
  height: 100%;
  padding: 0.5rem 1rem;
  border: none;
  background: none;
  cursor: pointer;
  transition: 0.3s;
  font-optical-sizing: auto;
  font-weight: 550;
  font-size: large;
  font-style: normal;
}

.dropbtn a{
  color: whitesmoke;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  transition: 0.3s;
  font-optical-sizing: auto;
  font-weight: 550;
  font-size: large;
  font-style: normal;
}
/* The container <div> - needed to position the dropdown content */
.menu {
  position:relative;
  display: inline-block;
  gap: 2rem;
}

/* Dropdown Content (Hidden by Default) */
.sub-menu {
  display: none;
  position:absolute;
  min-width: 160px;
  border-radius:10px;
  box-shadow: 0px 8px 16px 0px rgb(255, 152, 185);
  backdrop-filter: blur(2px);
  /*background-color: rgba(129, 128, 128,0.85);*/
  background-color: whitesmoke;
  z-index: 1;  
}

/* Links inside the dropdown */
.sub-menu a {
  color: rgb(110, 110, 110);
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  transition: 0.3s;
  font-optical-sizing: auto;
  font-weight: 550;
  font-size: large;
  font-style: normal;
}

/* Change color of dropdown links on hover */
.sub-menu a:hover {
  transform: scale(1.05);
  color: rgb(69, 196, 255);
}

/* Show the dropdown menu on hover */
.menu:hover .sub-menu {
  display: block;
}

/* Change the background color of the dropdown button when the dropdown content is shown */
.menu:hover .dropbtn, .menu:hover .dropbtn a {
  transform: scale(1.05);
  color: rgb(69, 196, 255);
  background-color: transparent;
}

.menu .dropbtn a.active {
  transform: scale(1.05);
  color: rgb(69, 196, 255);
  background-color: transparent;
}

.dropbtn.active, .sub-menu a.active {
  transform: scale(1.05);
  color: rgb(69, 196, 255);
  background-color: transparent;
}

.hr1 {
    border: 0;
    height: 3px;
    background-image: linear-gradient(to left, transparent 0%, rgb(69, 196, 255) 33%, rgb(255, 152, 185) 66%,transparent 100%);
  }

  /* ----- MENU MOBILE ------ */
  /* Estilo do menu mobile */

  .nav-list{
    list-style: none;
    display: flex;
  }
.nav-list li{
  letter-spacing: 3px;
  margin-left: 32px;
}

.menu-mobile{
  display: none;
  cursor: pointer;
}
.mobile-menu{
  display: none;
  cursor: pointer;
}
.mobile-menu div{
  display: none;
}

@media screen and (max-width: 1199px) {
  .slogan{
    font-size: 10rem;
    fill:none;
    stroke: whitesmoke;
    stroke-width: 4;
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: slogan 4s linear forwards;
    font-family: "Dela Gothic One", sans-serif;
  }

  
  .slogan2{
    font-size: 10rem;
    fill: whitesmoke;
    stroke: whitesmoke;
    stroke-width: 4;
    stroke-dasharray: 1100;
    stroke-dashoffset: 1100;
    animation: slogan2 4s linear forwards;
    font-family: "Dela Gothic One", sans-serif;
  }
  #sobre-nos-footer {
    font-size: 0.8rem; /* Reduz o tamanho do texto do rodapé */
}
  .menu-desktop {
    display: none; /* Esconde o menu desktop */
  }
  .logo{
    display: none; /* Esconde o logo desktop */
  }
  .logo-img{
    display: none; /* Esconde o logo desktop */
  }
  .menu-mobile {
    display: flex; /* Exibe o menu mobile */
    align-items: center; /* Alinha verticalmente ao centro */
    justify-content:space-between; /* Espaça os itens horizontalmente */
    width: 100%; /* Ocupa toda a largura */
    padding: 0.5rem 3rem; /* Adiciona espaçamento interno */
    box-sizing: border-box; /* Garante que o padding não afete o tamanho total */
  }
  .logo-mobile {
    display: flex;
    align-items: center;
    max-width: 65px;
    margin-left: 0;
    padding: 0.3rem;
  }
  
  .mobile-menu div {
    display: block;
    width: 32px;
    height: 3px;
    margin: 6px 0; /* Ajusta o espaçamento entre as barras */
    transition: 0.3s;
    background-color: whitesmoke;
  }
  .nav-list{
    position: absolute;
    top: 0vh;
    z-index: 9999;
    right: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(50, 50, 50, 0.8);
    backdrop-filter: brightness(1);
    gap: 5rem;
    flex-direction: column;
    align-items: center;
    justify-content:space-evenly;
    transform: translateX(100%);
    
  }
  .nav-list li a{
    font-size: 1rem;
    color: whitesmoke;
    text-decoration: none;
    display: block;
    padding: 0.5rem 1rem;
  }
  .nav-list li a:hover{
    transform: scale(1.05);
    color: rgb(69, 196, 255);
    background-color: rgba(255, 255, 255, 0.2); /* Adiciona um fundo ao passar o mouse */
    width: 100%;
  }

  .nav-list li {
    margin: 0;
    opacity: 0;
    font-weight: bold;
  }
  .nav-list li .dropbtn {
    margin: 0;
    padding: 0.5rem 1rem;
    width: 100%; /* Garante que o botão ocupe toda a largura */
    height: 30%;
    text-align: left; /* Alinha o texto à esquerda */
    background: none;
    border: none;
    font-size: 1.5rem;
    color: whitesmoke;
    text-decoration: none;
    cursor: pointer;
    }
  .nav-list li .dropbtn:hover {
    background-color: rgba(255, 255, 255, 0.2); /* Adiciona um fundo ao passar o mouse */
    color: #45c4ff;

  }
  .nav-list li .dropbtn a{
    margin: 0;
    padding: 0.5rem 1rem;
    width: 100%; /* Garante que o botão ocupe toda a largura */
    height: 30%;
    text-align: left; /* Alinha o texto à esquerda */
    background: none;
    border: none;
    font-size: 1.5rem;
    color: whitesmoke;
    text-decoration: none;
    cursor: pointer;
    }
    .nav-list li .dropbtn a:hover {
      color: #45c4ff;
      width: 70vw;
    }
  .mobile-menu{
    display: block;
    margin-left: auto; /* Garante que o menu fique no canto direito */
  }
  /* Exibe o menu mobile quando ativo */
  .nav-list.active {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: 0;
    width: 70vw;
    height: 100vh;
    background: rgba(50, 50, 50, 0.9);
    z-index: 1000;
    padding: 2rem;
    transform: translateX(0);
  }
  /* Esconde os submenus por padrão */
.sub-menu-mobile {
  display: none;
  list-style: none;
  width: 70vw;
  padding-left: 1rem;
  margin-top: 0rem;
  background-color: rgba(240, 240, 240, 0.75); /* Fundo do submenu */
  opacity: 1;
}

/* Exibe o submenu quando ativo */
.sub-menu-mobile.active {
  display: block;
}

/* Estilo dos links do submenu */
.sub-menu-mobile li a {
  color: #333;
  text-decoration: none;
  padding: 0.5rem 1rem;
  display: block;
}

.sub-menu-mobile li a:hover {
  background-color: #ddd;
}

.nav-list li:hover .sub-menu {
  display: block; /* Exibe o submenu ao passar o mouse */
  opacity: 1;
}

/* Exibe o menu mobile quando ativo */
.menu-mobile.active .nav-list {
    display: flex;
}

      


.grid-column-gan {
    flex: 1 1 100%; /* Cada coluna ocupa 100% da largura disponível */
    max-width: 100%; /* Garante que as colunas ocupem toda a largura */
}

.content-text {
    text-align: center; /* Centraliza o texto em telas menores */
}
/* Esconde o botão hamburguer quando o menu está ativo */
.mobile-menu.hidden {
  display: none;
}
/* Botão "X" para fechar o menu */
.close-btn {
  position: absolute;
  top: 1vw;
  right: 60vw;
  background: none;
  border: none;
  font-size: 3rem;
  color: whitesmoke;
  cursor: pointer;
  z-index: 1001;
  display: none; /* Esconde o botão por padrão */
}

/* Exibe o botão "X" quando o menu está ativo */
.nav-list.active .close-btn {
  display: block;
}

/* Esconde o botão hamburguer quando o menu está ativo */
.menu-mobile.active .mobile-menu{
  display: none;
}

@keyframes navLinkFade{
  from {
    opacity: 0;
    transform: translateX(10px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

}

/* Estilo geral do container de estatísticas */
.stats-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 50px;
  max-width: 100vw;
  margin: 2% auto; /* Centraliza a grade */
}

/* Estilo de cada item de estatística */
.stat-item {
  text-align: center; /* Centraliza o texto dentro de cada item */
  font-family: "Dela Gothic One", sans-serif;
  color: #333;
  display: flex; /* Torna o item flexível */
  flex-direction: column; /* Organiza os elementos verticalmente */
  align-items: center; /* Centraliza os elementos horizontalmente */
  justify-content: center; /* Centraliza os elementos verticalmente */
  padding: 10px;
}


/* Responsividade para telas menores */

@media (max-width: 992px) {
  #sobre-nos-footer {
    font-size: 0.8rem; /* Reduz o tamanho do texto do rodapé */
}
  .stats-container {
    width: calc(50% - 20px); /* Ajusta para 3 itens por linha */
  }
}

@media (max-width: 768px) {
  #sobre-nos-footer {
    font-size: 0.7rem; /* Reduz o tamanho do texto do rodapé */
}
  .stats-container {
    width: calc(50% - 20px); /* Ajusta para 2 itens por linha */
  }
}

@media (max-width: 576px) {
  
  #sobre-nos-footer {
    font-size: 0.6rem; /* Reduz o tamanho do texto do rodapé */
}
  .stats-container {
    width: 100%; /* Ajusta para 1 item por linha */
  }
  .grid-row-gan.reverse {
    flex-direction: column; /* Empilha os itens verticalmente */
    gap: 30px; /* Aumenta o espaçamento entre os itens */
}
}

/* ------------------------ */



/* Estilo do conteúdo principal */
.interface{
    max-width: 100vw;
    margin: 0 auto;
}
.interface-a-nossa-equipa{
  max-width: 1454px;
  margin: 0 auto;
  text-align: center;
}


.dela-gothic-one-regular {
  font-family: "Dela Gothic One", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.main-content .interface{
    display: flex;
    align-items: center;
    height: 100%;
    margin: 2%;
}

.txt-main-content{
  text-align: center;
  position: absolute;
  top: auto;
  left: auto;
  transform: translate(-50%,-50%);
  width: 100vw;
}


section.module p{
  margin-bottom: 40px;
  color: #000;
  font-family: "Dela Gothic One", sans-serif;

}
section.module .txt-main-content p {
  color: white;
  font-family: "Dela Gothic One", sans-serif;
  font-size: 1.3rem;
}

section.module:last-child{
  margin-bottom: 0;
}

section.module h2{
  margin-bottom: 40px;
  font-size: 30px;
  color:black;
  font-family: "Dela Gothic One", sans-sewhitesmokerif;
}

section.module.content{
 padding: 40px 20px;
 background-color: #cfcfcf;
 justify-content: space-between;
 align-items: center;
 text-align: center;
 margin: 0 auto;
 max-width: 100%;
 background-size: 100%;
 /*height: 40vh; -------------- AJUSTA TAMANHO DA AREA DO TEXTO NA PAGINA INICIAL (ALTURA)*/
}

section.module.content h2{
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  font-size: 2rem;
  margin-bottom: 20px;
  color: #333;
}

section.module.content p{
  margin: 0 auto;
  font-size: 1rem;
  line-height: 1.8;
  padding: 10px 0;
  color: #555;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: justify;
  max-width: 1100px;
}

/* Estilo geral do container de estatísticas */
.stats-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10%;
  margin-top: 50px;
  max-width: 100vw;
}
/* Estilo de cada item de estatística */
.stat-item {
  text-align: center; /* Centraliza o texto dentro de cada item */
  font-family: "Dela Gothic One", sans-serif;
  color: #333;
  display: flex; /* Torna o item flexível */
  flex-direction: column; /* Organiza os elementos verticalmente */
  align-items: center; /* Centraliza os elementos horizontalmente */
  justify-content: center; /* Centraliza os elementos verticalmente */
}

/* Estilo dos ícones */
.stat-item i {
  font-size: 2rem; /* Tamanho do ícone */
  color: #33333385; /* Cor do ícone */
  margin-bottom: 10px; /* Espaçamento abaixo do ícone */
}

/* Estilo dos números */
.stat-item h3 {
  font-size: 1.5rem; /* Tamanho do número */
  margin: 0;
  color: #333;
  margin-bottom: 5px; /* Espaçamento abaixo do número */
}

/* Estilo das descrições */
.stat-item p {
  font-size: 1rem;
  margin: 0;
  color: #333;
}

.counter {
  font-size: 2rem;
  font-weight: bold;
  color: #333;
  transition: color 0.3s ease;
}

.counter:hover {
  color: #45c4ff; /* Altera a cor ao passar o mouse */
}

/******** DOCUMENTOS **********/

/* Estilo da seção de documentos */

.document {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 1% auto; /* Centraliza a seção */
  max-width: 800px; /* Largura máxima da seção */
  border-radius: 10px; /* Bordas arredondadas */
}
.document a {
  text-decoration: none;
  font-size: 1.2rem;
  color: #3498db; /* Cor do link */
  display: flex;
  align-items: center;
  gap: 10px; /* Espaçamento entre o ícone e o texto */
  transition: color 0.3s ease;
}

.document a:hover {
  color: #2c6cb0; /* Cor do link ao passar o mouse */
}

.document i {
  font-size: 1.5rem;
  color: #e74c3c; /* Cor do ícone */
}

/*****************************/


/**** GUIA DO ESTUDANTE ****/

/* Contêiner do PDF */
.pdf-container {
  text-align: center;
  margin: 20px auto;
  max-width: 900px;
  position: relative; /* Necessário para posicionar os botões */
  margin-bottom: 3%;
}

.pdf-container h2 {
  font-size: 1.5rem;
  margin-top: 10%;
}
#pdf-viewer {
  margin: 20px auto;
  max-width: 800px;
  display: flex;
  justify-content: center; /* Centraliza os dois canvas */
  gap: 10px; /* Espaçamento entre as páginas */
}

#pdf-canvas-container {
  display: flex;
  justify-content: center;
  gap: 10px; /* Espaçamento entre os dois canvas */
}

#pdf-canvas-left,
#pdf-canvas-right {
  width: 45%; /* Cada canvas ocupa 45% da largura */
  height: auto;
  border-radius: 3%;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.7); /* Sombra leve */
}

/* Botões de navegação */
.pdf-controls {
  position: absolute;
  top: 50%; /* Centraliza verticalmente */
  width: 100%; /* Garante que os botões fiquem alinhados ao contêiner */
  display: flex;
  justify-content: space-between; /* Posiciona os botões nas extremidades */
  transform: translateY(-50%); /* Ajusta o alinhamento vertical */
}

.pdf-controls button {
  padding: 10px;
  background-color: #3498db;
  color: white;
  border: 1px solid #3498db; /* Define a borda corretamente */
  border-radius: 50%; /* Torna os botões circulares */
  cursor: pointer;
  font-size: 1.2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5); /* Sombra leve */
}

.pdf-controls button:hover {
  background-color: #2980b9;
  border: 2px solid #ff98b9; /* Altera a cor da borda no hover */

}

.pdf-controls i {
  font-size: 1.2rem; /* Tamanho do ícone */
}

.pdf-controls span {
  color: whitesmoke; /* Cor do texto */
  transform: translateY(310px); /* Ajusta o alinhamento vertical */ 
}
/***************************/




@media all and (max-width: 820px) {
  #sobre-nos-footer {
    font-size: 0.8rem; /* Reduz o tamanho do texto do rodapé */
}
  section.module h2 {
    font-size: 32px;
  }
  .module h2, p{
    padding: 0 8px;
  }

  .container{
    margin:0;
    padding:0;
  }

  .grid-row-gan.reverse {
    flex-direction: column; /* Empilha os itens verticalmente */
    gap: 30px; /* Aumenta o espaçamento entre os itens */
}
}

/* Responsividade para telas menores */
@media (max-width: 768px) {
  #sobre-nos-footer {
    font-size: 0.7rem; /* Reduz o tamanho do texto do rodapé */
}

.main-content {
    padding: 10px;
}

.txt-main-content {
    max-width: 90%; /* Reduz a largura máxima do texto */
}

.module.content h2 {
    font-size: 1.5rem; /* Reduz o tamanho do título */
}

.module.content p {
    font-size: 0.9rem; /* Reduz o tamanho do texto */
}
  .faq-item {
      padding: 15px; /* Reduz o espaçamento interno dos itens */
  }

  .faq-item h2 {
      font-size: 1.3rem; /* Reduz o tamanho do título */
  }

  .faq-item p {
      font-size: 0.9rem; /* Reduz o tamanho do texto */
  }
}



/*FOOTER*/

  /* Estilo inicial do hr */
  .hr1-gan {
    width: 1px; /* Começa com largura mínima */
    height: 2px; /* Altura da linha */
    border: none; /* Remove a borda padrão */
    margin: 20px auto; /* Centraliza horizontalmente */
    transition: width 1s ease; /* Animação suave para o width */
    background-image: linear-gradient(to left, transparent 0%, rgb(69, 196, 255) 33%, rgb(255, 152, 185) 66%,transparent 100%);
}

/* Quando o hr estiver visível */
.hr1-gan.visible {
    width: 100%; /* Expande para 100% da largura do container */
}
.hr2{
  border: 0;
  content:url(../img/logo_ae.png);
  display:block;
  position:relative;
  left:50%;
  height:50px;
  width:50px;
  margin:-100px 100px 50px -25px;
  overflow:hidden;
  box-shadow: 0 0 0 1px #eef, 0 0 5px;
  border-radius: 50%;
  border-color: none;
  opacity: 0; /* Começa invisível */
  transition: opacity 4.5s ease; /* Animação suave para a opacidade */
}
/* Quando o hr2 estiver visível */
.hr2.visible {
  opacity: 1; /* Torna visível */
}
.hr2 {transform:scale(1.5)}


.conteudo-rodape{
	max-width: 1170px;
	margin:auto;
}
.row{
	display: flex;
	flex-wrap: wrap;
}
ul{
	list-style: none;
}
.footer{
  width: 100%;
  background-color: #24262b;
  color: white;
  padding: 70px 0;
  position:relative;
  z-index: 99999;
  
}
.footer-gan{
  width: 100%;
  background-color: #24262b;
  color: white;
  padding: 70px 0;
  position:sticky;
  margin-top: 165%;
  z-index: 99999;
}
.footer-col{
   width: 25%;
   padding: 0 15px;
}
.footer-col h4{
	font-size: 18px;
	color: #ffffff;
	margin-bottom: 35px;
	font-weight: 500;
	position: relative;
}
.footer-col h4::before{
	content: '';
	position: absolute;
	left:0;
	bottom: -10px;
	background-color: rgb(255, 152, 185);
	height: 2px;
	box-sizing: border-box;
	width: 50px;
}
.footer-col span{
  color: #bbbbbb;
}

.footer-col ul li:not(:last-child){
	margin-bottom: 10px;
}
.footer-col ul li a{
	font-size: 16px;
	text-transform: capitalize;
	color: #ffffff;
	text-decoration: none;
	font-weight: 300;
	color: #bbbbbb;
	display: block;
	transition: all 0.3s ease;
}
.footer-col ul li a:hover{
	color: #ffffff;
	padding-left: 8px;
}
.footer-col .social-links a{
	display: inline-block;
	height: 40px;
	width: 40px;
	background-color: rgba(255,255,255,0.2);
	margin:0 10px 10px 0;
	text-align: center;
	line-height: 40px;
	border-radius: 50%;
	color: #ffffff;
	transition: all 0.5s ease;
}
.footer-col .social-links a:hover{
	color: #24262b;
	background-color: #ffffff;
}

/*responsive*/
@media(max-width: 767px){
  .footer-col{
    width: 50%;
    margin-bottom: 30px;
}
.grid-row-gan.reverse {
  flex-direction: column; /* Empilha os itens verticalmente */
  gap: 30px; /* Aumenta o espaçamento entre os itens */
}
body {
  background-attachment: fixed; /* Mantém a imagem fixa ao rolar a página */
  background-position: center; /* Centraliza a imagem */
  background-repeat: no-repeat;
  background-size: cover;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
}

}
@media(max-width: 574px){

  .footer-col{
    width: 100%;
    text-align: center;
  }
  .footer-col h4::before{
    margin: 0 auto;
    right: 0;
  }
  .grid-row-gan.reverse {
    flex-direction: column; /* Empilha os itens verticalmente */
    gap: 30px; /* Aumenta o espaçamento entre os itens */
}
}

/* CALENDÁRIO DE EVENTOS*/
.event-desc-plus{
  color: rgba(8, 8, 8, 0.603);
  background-color: rgba(0, 0, 0, 0.11);
  border: 1px solid rgb(255, 152, 185);
  font-weight: bold;
  font-size: 16px;
  text-decoration: none;
  border-radius: 5px;
  min-width: 8%;
  margin-left: 90%;
  margin-top: -8%;
  display:flex;
  justify-content: center;
  align-items:flex-end;
  cursor: pointer;
}

.event-desc-plus:hover {
  background-color: rgb(255, 211, 225);
}

.desc-popup{
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: none;
  align-items: center;
  justify-content: center;
}

.desc-popup.active{
  display: flex;
}

.popup{
  background-color: #6db1ff;
  border-radius: 5px;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
  padding: 2rem;
  position: relative;
  width: 500px;
}

.popup button{
  background-color: transparent;
  border-color: transparent;
  color: #24262b;
  font-size: 2rem;
  position: absolute;
  top: 10px;
  right: 10px;
}
 
/* DESPORTO */
section.main-content-desporto {
  flex: 1; /* Faz o main-content crescer para ocupar o espaço disponível */
  box-sizing: border-box; /* Garante que o padding não afete o tamanho total */
  height: 100vh; 
  margin: 0 auto; 
  margin-top: 7%;
  padding: 2%;
}

/* GRUPOS ACADÉMICOS E NÚCLEOS*/
section.main-content-gan {
  flex: 1; /* Faz o main-content crescer para ocupar o espaço disponível */
  box-sizing: border-box; /* Garante que o padding não afete o tamanho total */
  height: 100vh; 
  margin: 0 auto; 
  margin-top: 7%;
  padding: 2%;
}
.titulo-gan{
  text-align: center; /* Centraliza horizontalmente */
  margin: 0 auto; /* Garante que o elemento esteja centralizado */
  font-size: 2.5rem; /* Ajusta o tamanho da fonte */
  padding: 5px 0; /* Adiciona espaçamento acima e abaixo */
}
/* Estilo das linhas de conteúdo */
.grid-row-gan {
  display: flex;
  gap: 20px; /* Espaçamento entre as colunas */
  justify-content: center;
  margin-bottom: 7%;
}

/* Inverte a ordem para 30% à esquerda e 70% à direita */
.grid-row-gan.reverse {
  flex-direction: row-reverse;
}

/* Estilo das colunas */
.grid-column-gan {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Define as proporções das colunas */
.grid-column-gan.left {
  flex: 70%; /* Coluna com 30% de largura */
}

.grid-column-gan.right {
  flex: 30%; /* Coluna com 70% de largura */
}

/* Estilo das imagens */
.content-image {
  width: 75%; /* Faz a imagem ocupar toda a largura da coluna */
}

/* Estilo do texto */
.content-text {
  text-align: justify; /* Alinha o texto à esquerda */
}

.content-text h2 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: whitesmoke;
}

.content-text p {
  font-size: 1rem;
  line-height: 1.5;
  color: whitesmoke;
}

.content-text a {
  text-decoration: none;
  color: whitesmoke; /* Cor do link */
  font-weight: bold;
}

.content-text a:hover {
  text-decoration: none;
  color: #3498db; /* Cor do link */
  font-weight: bold;
}

/* Responsividade para telas maiores (desktops grandes e widescreens) */
@media (min-width: 1454px) {
  .grid-row {
    gap: 30px; /* Aumenta o espaçamento entre as colunas */
  }
  .content-image {
    max-width: 400px; /* Aumenta o tamanho máximo das imagens */
  }

  .content-text {
    max-width: 800px; /* Aumenta a largura máxima do texto */
  }

  .content-text h2 {
    font-size: 2rem; /* Aumenta o tamanho do título */
  }

  .content-text p {
    font-size: 1.2rem; /* Aumenta o tamanho do texto */
    line-height: 1.8; /* Aumenta o espaçamento entre linhas */
  }

  .content-text a {
    font-size: 1.1rem; /* Aumenta o tamanho do link */
  }
  
}

/* Responsividade para telas menores */
@media (max-width: 768px) {
  .grid-row {
    flex-direction: column; /* Empilha as colunas verticalmente */
    gap: 30px; /* Aumenta o espaçamento entre os itens */
  }

  .content-image {
    max-width: 200px; /* Reduz o tamanho máximo das imagens */
  }

  .content-text {
    text-align: center; /* Centraliza o texto */
    max-width: 100%; /* Remove a largura máxima */
  }

  .content-text h2 {
    font-size: 1.3rem; /* Reduz o tamanho do título */
  }

  .content-text p {
    font-size: 0.9rem; /* Reduz o tamanho do texto */
  }

  .content-text a {
    font-size: 0.9rem; /* Reduz o tamanho do link */
  }
  .grid-row-gan.reverse {
    flex-direction: column; /* Empilha os itens verticalmente */
    gap: 30px; /* Aumenta o espaçamento entre os itens */
}
}

/* Responsividade para telas muito pequenas (smartphones) */
@media (max-width: 480px) {
  /* Garante que o rodapé fique no final da página */
  body {
    display: flex;
    flex-direction: column;
    min-height: 100vh; /* Garante que o body ocupe toda a altura da janela */
    margin: 0; /* Remove margens padrão */
  }
  .aeesep_section {
    background-image: url("../img/fundo_1_mobile.png") !important;
  height: 100vh !important;
  width: 100vw;
  min-height: 100vh;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  }
  
  .aeesep_container {
    width: 100%;
    max-width: 1200px; /* Limita a largura máxima do slider */
    height: 100vh;
    min-height: 100vh;
    margin: 0 auto; /* Centraliza o slider */
    position: relative;
  }
    .news-section {
      height: 100vh !important;
      width: 100vw;
    }
    /* Estilo do título */
.card-title {
  font-size: 1.1rem !important;
  font-weight: bold;
  margin: 10px 0;
  color: #333;
}

#sobre-nos-footer {
    font-size: 0.6rem; /* Reduz o tamanho do texto do rodapé */

}
.module.content{
  padding: 40px 20px;
  background-color: rgba(207, 207, 207);
  justify-content: space-between;
  align-items: center;
  text-align: center;
  max-width: 100%;
  background-size: 100%;
  /*height: 40vh; -------------- AJUSTA TAMANHO DA AREA DO TEXTO NA PAGINA INICIAL (ALTURA)*/
 }
.module.content h2 {
    font-size: 1.2rem; /* Reduz ainda mais o tamanho do título */
}

.module.content p {
    font-size: 0.8rem; /* Reduz ainda mais o tamanho do texto */
    width: 90%;
}
  .faq-item h2 {
      font-size: 1.2rem; /* Reduz ainda mais o tamanho do título */
  }

  .faq-item p {
      font-size: 0.8rem; /* Reduz ainda mais o tamanho do texto */
  }

  .footer2 {
    width: 100%;
    background-color: #24262b; /* Cor de fundo do rodapé */
    color: white; /* Cor do texto */
    padding: 20px 0; /* Espaçamento interno */
    text-align: center; /* Centraliza o texto */
    position: relative; /* Permite que o rodapé fique acima de outros elementos */
    z-index: 1; /* Certifica-se de que o rodapé fique acima de outros elementos */
  }


  section.main-content-gan {
    flex: 1; /* Faz o main-content crescer para ocupar o espaço disponível */
    box-sizing: border-box; /* Garante que o padding não afete o tamanho total */
    height: 100vh; 
    margin: 0 auto; 
    margin-top: 30%;
    padding: 2%;
  }
  .titulo-gan{
    text-align: center; /* Centraliza horizontalmente */
    margin: 0 auto; /* Garante que o elemento esteja centralizado */
    font-size: 2rem; /* Ajusta o tamanho da fonte */
    padding: 5px 0; /* Adiciona espaçamento acima e abaixo */
  }
  /* Ajusta o layout para que as imagens fiquem acima do texto */
  .grid-row {
    flex-direction: column; /* Empilha os elementos verticalmente */
    gap: 20px; /* Espaçamento entre os itens */
  }

  .grid-column {
    flex: none; /* Remove o comportamento de flex-grow */
    width: 100%; /* Faz as colunas ocuparem toda a largura */
    text-align: center; /* Centraliza o conteúdo */
  }

  .content-image {
    max-width: 150px; /* Reduz o tamanho máximo das imagens */
    margin: 0 auto 10px; /* Centraliza a imagem e adiciona espaçamento abaixo */
  }

  .content-text {
    text-align: center; /* Centraliza o texto */
    max-width: 100%; /* Remove a largura máxima */
  }

  .content-text h2 {
    font-size: 1.2rem; /* Reduz o tamanho do título */
  }

  .content-text p {
    font-size: 0.8rem;
    text-align: justify; /* Reduz o tamanho do texto */
  }

  .content-text a {
    font-size: 0.8rem; /* Reduz o tamanho do link */
  }
  .grid-row-gan.reverse {
    flex-direction: column; /* Empilha os itens verticalmente */
    gap: 30px; /* Aumenta o espaçamento entre os itens */  
  } 

  .faq-theme {
    font-size: 0.6rem;
    text-align: center;
  } 
}

@media (max-width: 390px) and (max-height: 844px) and (aspect-ratio: 19/9) {
  .aeesep_section {
    background-image: url("../img/fundo_1_mobile.png") !important;
  height: 100vh !important;
  width: 100vw;
  min-height: 100vh;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  }
  
  .aeesep_container {
    width: 100%;
    max-width: 1200px; /* Limita a largura máxima do slider */
    height: 100vh;
    min-height: 100vh;
    margin: 0 auto; /* Centraliza o slider */
    position: relative;
  }
}


/* ------------------ */

.txt-gan-content1{
  z-index: 10000;
  box-sizing: border-box;
  border: 5px;
  color: red;
}

.txt-gan-content1 img{
  width: 400px;
  height: 300px;
}

.txt-gan-content2{
  border: 5%;
  border-color: 10px;
  z-index: 10000;
  opacity:100%;
}

.txt-gan-content3{
  border: 5%;
  border-color: 10px;
  z-index: 10000;
  opacity:100%;
}


/*GRUPOS ACADÉMICOS INDIVIDUAL*/



/* DESPORTO*/

.slider{
    margin: 0 auto;
    width: 100vh;
    height: 88vh;
}

/* Calendario eventos*/

.interface-calendario-evento{
  width: 100%;
  height: 100%;
  position: relative;
}

#calendar{
  width: 80%;
  height: 72%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  margin-top: 5%;
  
}





/* RESOLUÇÃO PARA MACBOOK AIR 1454px x 761px */

*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Beiruti", sans-serif;
  color: whitesmoke;
}

header{
  width: 100%;
  top: 0;
  padding-top: 1.5%;
  z-index: 9999999999;
  position: fixed;
  backdrop-filter: brightness(0.5);
}

.conteudo-cabecalho{
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1454px;
  margin: 0 auto;
  background: transparent;
}

.logo{
margin: auto;
padding: 0.5rem;
}
.logo img{
  max-width: 65px;
}

.nav-bar{
  margin: auto;
  padding: 0.5rem;
}

.dropbtn{
display: inline-block;
margin: 0 40px;
position: relative;
list-style: none;
height: 100%;
padding: 0.5rem 1rem;
border: none;
background: none;
cursor: pointer;
transition: 0.3s;
font-optical-sizing: auto;
font-weight: 550;
font-size: large;
font-style: normal;
}

.dropbtn a{
color: whitesmoke;
padding: 12px 16px;
text-decoration: none;
display: block;
transition: 0.3s;
font-optical-sizing: auto;
font-weight: 550;
font-size: large;
font-style: normal;
}
/* The container <div> - needed to position the dropdown content */
.menu {
position:relative;
display: inline-block;
gap: 2rem;
}

/* Dropdown Content (Hidden by Default) */
.sub-menu {
display: none;
position:absolute;
min-width: 160px;
border-radius:10px;
box-shadow: 0px 8px 16px 0px rgb(255, 152, 185);
backdrop-filter: blur(2px);
/*background-color: rgba(129, 128, 128,0.85);*/
background-color: whitesmoke;
z-index: 1;  
}

/* Links inside the dropdown */
.sub-menu a {
color: rgb(110, 110, 110);
padding: 12px 16px;
text-decoration: none;
display: block;
transition: 0.3s;
font-optical-sizing: auto;
font-weight: 550;
font-size: large;
font-style: normal;
}

/* Change color of dropdown links on hover */
.sub-menu a:hover {
transform: scale(1.05);
color: rgb(69, 196, 255);
}

/* Show the dropdown menu on hover */
.menu:hover .sub-menu {
display: block;
}

/* Change the background color of the dropdown button when the dropdown content is shown */
.menu:hover .dropbtn, .menu:hover .dropbtn a {
transform: scale(1.05);
color: rgb(69, 196, 255);
background-color: transparent;
}

.menu .dropbtn a.active {
transform: scale(1.05);
color: rgb(69, 196, 255);
background-color: transparent;
}

.dropbtn.active, .sub-menu a.active {
transform: scale(1.05);
color: rgb(69, 196, 255);
background-color: transparent;
}

.hr1 {
  border: 0;
  height: 2.5px;
  background-image: linear-gradient(to left, transparent 0%, rgb(69, 196, 255) 33%, rgb(255, 152, 185) 66%,transparent 100%);
}


.interface{
  max-width: 1454px;
  margin: 0 auto;
}

/*------- A NOSSA EQUIPA -------*/

/* Estilo geral do main */
.main-equipa {
  margin-top: 150px;
  max-width: 100vw;
  text-align: center;
}
/* Estilo do título H2 */
.main-equipa h2 {
  text-align: center;
  font-size: 2rem;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  font-family: "Dela Gothic One", sans-serif;
}
/* Estilo atualizado para .module.content2 */
.module.content2 {
  padding: 1rem; /* Espaçamento interno */
  backdrop-filter: brightness(0.5);
  margin: 20px 0; /* Espaçamento vertical */
  width: 100vw; /* Ocupa toda a largura da tela */
  color: #333; /* Cor do texto */
  text-align: justify;
  display: flex; /* Torna o contêiner flexível */
  justify-content: center;
  position: relative; /* Necessário para efeitos adicionais */
  overflow: hidden; /* Garante que elementos extras fiquem dentro da seção */
}

/* Estilo do título dentro da seção */
.module.content2 h2 {
  font-size: 1.7rem; /* Tamanho do título */
  color: rgba(255, 255, 255, 0.78); /* Cor do título */
  text-align: center;
  margin-bottom: 15px; /* Espaçamento abaixo do título */
  text-transform: uppercase; /* Torna o texto em maiúsculas */
  letter-spacing: 1px; /* Adiciona espaçamento entre as letras */
}

/* Estilo do texto dentro da seção */
.module.content2 p {
  max-width: 1100px;
  margin: 0 auto; /* Centraliza o texto */
  font-size: 1rem; /* Tamanho do texto */
  line-height: 1.7; /* Espaçamento entre linhas */
  color: rgba(255, 255, 255, 0.75); /* Cor do texto */
  margin-bottom: 5px;
}
.module.content2 a {
  display: flex;
  justify-content: center;
  font-size: 1rem; 
  line-height: 1.7;
  font-family: "Dela Gothic One", sans-serif;
}
/* Efeito decorativo no fundo */
.module.content2::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0) 70%);
  opacity: 0.5; /* Transparência do efeito */
  pointer-events: none; /* Garante que o efeito não interfira na interação */
}
/* Estilo geral da secao */
.secao {
  margin: 35px;
  display: flex;
  flex-wrap: wrap; /* Permite que os itens se ajustem em várias linhas */
  justify-content: center; /* Centraliza os itens horizontalmente */
  align-items: center;
  gap: 40px;
}

/* Estilo da grade */
.grid {
  display: flex; /* Usa CSS Grid para organizar os itens */
  gap: 20px; /* Espaçamento entre os itens */
  flex-wrap: wrap;
  max-width: 1200px; /* Largura máxima da grade */
  grid-template-columns: repeat(5, 1fr);
  margin: 0 auto; /* Centraliza a grade */
  justify-content: center;
}

/* Estilo dos itens */
.item {
  background: linear-gradient(145deg, #ffffffea, #e6e6e6ea); /* Fundo com gradiente suave */
  border-radius: 20px; /* Bordas arredondadas */
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2); 
  text-align: center;
  padding: 20px;
  margin-bottom: 40px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Efeito ao passar o mouse */
.item:hover {
  transform: translateY(-10px); /* Eleva o item ao passar o mouse */
  box-shadow: 0px 0px 15px rgba(184, 184, 184, 0.773); /* Aumenta a sombra no hover */
}

/* Estilo das imagens */
.item img {
  width: 175px; /* Tamanho fixo para as imagens */
  height: 175px;
  border-radius: 50%; /* Torna as imagens circulares */
  margin-bottom: 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Sombra leve */
  transition: transform 0.3s ease;
}

.item:hover img {
  transform: scale(1.1); /* Aumenta a imagem ao passar o mouse */
}

/* Estilo do nome */
.item h4 {
  font-size: 1.2rem;
  margin-bottom: 5px;
  color: #333;
  font-weight: bold;
  text-transform: uppercase; /* Torna o texto em maiúsculas */
}

/* Estilo do cargo */
.item p {
  font-size: 1rem;
  color: #666;
  margin: 0;
  font-style: italic; /* Adiciona um estilo itálico */
}

/* Animação ao carregar */
.item {
  opacity: 0;
  animation: fadeIn 0.5s ease forwards;
}

.item:nth-child(odd) {
  animation-delay: 0.2s;
}

.item:nth-child(even) {
  animation-delay: 0.4s;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.img-construcao{
  width: 250px;
  height: 250px;
  margin:0 auto;
  margin-left: 20%;
  margin-top: 95%;
}

.slogan{
  font-size: 10rem;
  fill:none;
  stroke: whitesmoke;
  stroke-width: 4;
  stroke-dasharray: 2000;
  stroke-dashoffset: 2000;
  animation: slogan 4s linear forwards;
  font-family: "Dela Gothic One", sans-serif;
}

@keyframes slogan{
  to{
    stroke-dashoffset: 0;
  }
}

.slogan2{
  font-size: 10rem;
  fill: whitesmoke;
  stroke: whitesmoke;
  stroke-width: 4;
  stroke-dasharray: 2200;
  stroke-dashoffset: 2200;
  animation: slogan2 4s linear forwards;
  font-family: "Dela Gothic One", sans-serif;
}

@keyframes slogan2{
  to{
    stroke-dashoffset: 0;
  }
}

/* Responsividade para telas menores */
@media (max-width: 1200px) {
  .item {
    width: calc(25% - 20px); /* Ajusta para 4 itens por linha */
  }
  .txt-main-content{
    text-align: center;
    position: absolute;
    top: auto;
    left: auto;
    transform: translate(-50%,-50%);
    width: 100vw;
  }

  .slogan{
    font-size: 10rem;
    fill:none;
    stroke: whitesmoke;
    stroke-width: 4;
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: slogan 4s linear forwards;
    font-family: "Dela Gothic One", sans-serif;
  }

  
  .slogan2{
    font-size: 10rem;
    fill: whitesmoke;
    stroke: whitesmoke;
    stroke-width: 4;
    stroke-dasharray: 1100;
    stroke-dashoffset: 1100;
    animation: slogan2 4s linear forwards;
    font-family: "Dela Gothic One", sans-serif;
  }
  
  .txt-main-content p {
    font-size: 0.5rem;
    font-family: "Dela Gothic One", sans-serif;
  }
}

@media (max-width: 992px) {
  .item {
    width: calc(33.33% - 20px); /* Ajusta para 3 itens por linha */
  }
}

@media (max-width: 768px) {
  .item {
    width: calc(50% - 20px); /* Ajusta para 2 itens por linha */
  }
}

@media (max-width: 576px) {
  .item {
    width: 100%; /* Ajusta para 1 item por linha */
  }
}
.main-content{
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: justify;
  margin: 2%; 
  padding: 2%;
}

.dela-gothic-one-regular {
font-family: "Dela Gothic One", sans-serif;
font-weight: 400;
font-style: normal;
}

.main-content .interface{
  display: flex;
  align-items: center;
  height: 100%;
}

.txt-main-content{
text-align: center;
position: absolute;
top: 57%;
left: 50%;
transform: translate(-50%,-50%);
width: 100%;
}


.main {
  flex: 1;
  box-sizing: border-box !important;
}

.txt-main-content p {
font-size: 1.3rem;
font-family: "Dela Gothic One", sans-serif;
}

section.module p{
margin-bottom: 40px;
color: #000;
font-family: "Dela Gothic One", sans-serif;

}
section.module .txt-main-content p {
color: white;
font-family: "Dela Gothic One", sans-serif;

}

section.module:last-child{
margin-bottom: 0;
}

section.module h2{
margin-bottom: 40px;
font-size: 30px;
color:black;
font-family: "Dela Gothic One", sans-sewhitesmokerif;
}

section.module.content{
padding: 40px 0;
background-color: rgb(207, 207, 207);
justify-content: space-between;
align-items: center;
margin: 0 auto;
background-size: 100%;
/*height: 40vh; -------------- AJUSTA TAMANHO DA AREA DO TEXTO NA PAGINA INICIAL (ALTURA)*/
}

section.module.content h2{
display: flex;
justify-content: center;
align-items: center;
margin-left: auto;
margin-right: auto;
text-align: center;
}

section.module.content p{
margin: 0 auto;
padding: 10px 0;
display: flex;
justify-content: space-between;
align-items: center;
max-width: 1100px;
text-align: justify;
}

.aeesep_section {
  padding: 40px 20px;
  background-image: url("../img/fundo_1.png");
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100vh !important;
  width: 100vw;
  position: relative;
  overflow: hidden;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
}
  

/***********************NOVIDADES************************/
/* Estilo geral do container do slider */
.news-section {
  display: flex; /* Define o layout como flexbox */
  justify-content: center; /* Centraliza horizontalmente */
  align-items: center; /* Centraliza verticalmente */
  height: 85vh; /* Faz a seção ocupar toda a altura da viewport */
  width: 100vw; /* Faz a seção ocupar toda a largura da viewport */
  padding: 0; /* Remove o padding para centralizar corretamente */
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 10px;
}

.news-container {
  width: 90%;
  border-radius: 10px;
  max-width: 1200px; /* Limita a largura máxima do slider */
  margin: 0 auto; /* Centraliza o slider horizontalmente */
  position: relative;
}

/* Estilo dos slides */
.card-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: #ffffffce;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-item:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

/* Estilo do link dentro do slide */
.card-link {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px; 
  padding: 20px;
}

/* Estilo da imagem */
.card-image {
  width: 100%;
  aspect-ratio:4/5;
  object-fit: cover;
  border-radius:10px;
}

/* Estilo do título */
.card-title {
  font-size: 1.5rem;
  font-weight: bold;
  margin: 10px 0;
  color: #333;
}

.badge-container {
  display: flex; /* Usa Flexbox para posicionar os badges lado a lado */
  gap: 10px; /* Espaçamento entre os badges */
  justify-content: center; /* Centraliza os badges horizontalmente */
  align-items: center; /* Centraliza os badges verticalmente */
}

/* Estilo do badge AEESEP */
.badge.AEESEP {
  font-size: 0.9rem;
  font-weight: bold;
  color: #ffffff;
  background-color: #3498db;
  padding: 5px 10px;
  border-radius: 20px;
  text-transform: uppercase;
  display: inline-block;
}

/* Estilo do badge ReConstruir */
.badge.ReConstruir {
  font-size: 0.9rem;
  font-weight: bold;
  color: #ffffff;
  background-color: rgb(255, 145, 0);
  padding: 5px 10px;
  border-radius: 20px;
  text-transform: uppercase;
  display: inline-block;
}

/* Estilo dos botões de navegação */
.swiper-button-prev,
.swiper-button-next {
  color: #3498db;
  width: 40px !important; /* Define a largura do botão */
  height: 40px !important; /* Define a altura do botão (igual à largura para ser circular) */
  transition: color 0.3s ease, background-color 0.3s ease;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  border: #3498dbc4 2px solid;
  background-color: #b6b6b678;
  border-radius: 50% !important; /* Garante que o botão seja completamente circular */
  display: flex; /* Garante que o conteúdo interno seja centralizado */
  align-items: center; /* Centraliza verticalmente o ícone */
  justify-content: center; /* Centraliza horizontalmente o ícone */
  overflow: hidden; /* Garante que o conteúdo não ultrapasse os limites do botão */
  box-sizing: border-box; /* Inclui bordas no cálculo do tamanho */
}

/* Ajusta o tamanho das setas (ícones SVG) */
.swiper-button-prev::after,
.swiper-button-next::after {
  font-size: 1.7rem !important; /* Ajusta o tamanho das setas */
  color: #3498db; /* Define a cor das setas */
}

/* Hover nos botões */
.swiper-button-prev:hover,
.swiper-button-next:hover {
  color: #2980b9; /* Altera a cor do botão ao passar o mouse */
  border: #2980b9 2px solid;
  background-color: #b6b6b691;
}

.swiper-button-prev:hover::after,
.swiper-button-next:hover::after {
  color: #2980b9; /* Altera a cor das setas ao passar o mouse */
}

/* Estilo da paginação */
.swiper-pagination-bullet {
  background: #3498db;
  opacity: 1;
  transition: background-color 0.3s ease;
  width: 24px !important;
  height: 1px !important;

}

.swiper-pagination-bullet-active {
  background: #2980b9;
}



/******************************************************/

/**** Questões Frequentes ****/

/* Garante que o main-content ocupe o espaço necessário */
section.main-content-faq{
  flex: 1; /* Faz o main-content crescer para ocupar o espaço disponível */
  box-sizing: border-box; /* Garante que o padding não afete o tamanho total */
  height: 100vh; 
  margin: 12%;
  padding: 2%;
}

.faq-container {
  margin-top: 0%;
  margin-bottom: 4%;
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
  max-width: 1454px;
  background-color: rgba(255, 255, 255, 0.80);
  padding: 30px;
  border-radius: 12px;
  border: 1px solid rgb(69, 196, 255);
    -webkit-box-shadow: 0 10px 50px -20px rgb(255, 152, 185, 0.65);
    box-shadow: 0 10px 50px -20px rgb(255, 152, 185, 0.65);
}

.faq-title {
  text-align: center;
  font-size: 3em;
  margin-bottom: 2%;
  color: #333;
}
.faq-theme {
  text-align: center;
  margin-bottom: 2%;
  color: #333;
  display: inline-block;
  border: 0;
  background-color: transparent;
  cursor: pointer;
}
.faq-theme h3{
  text-align: center;
  font-size: 2.5em;
  color: #333;
}
.faq-theme.ativo {
  color:#3498db;
}

#faq-Exames{
  display:none; /* Div 1 aparece por padrão */
}
details {
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 15px;
  margin-bottom: 10px;
  background-color: #f1f1f1;
}

summary {
  font-weight: bold;
  cursor: pointer;
  outline: none;
  color: #000;
  font-size: 1.5em;
}

details[open] {
  background-color: #e9ecef;
}

details[open] summary{
  color: #3498db;
}

details p {
  margin: 10px 0 0;
  color: #555;
  font-size: 1.5em;
}
details a {
  text-decoration: none;
  color: #3498db;
}
details a:hover {
  text-decoration: underline;
  color: #2c6cb0;
}


/******************************************************/

/**** Grupos Académicos e Núcleos ****/

/* Estilo da paginação */

/******************************************************/
/* FIM DE RESOLUÇÃO PARA MACBOOK AIR 1454px x 761px */