/* Reset básico */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
 /* MENÚ ICON */

.menu-icon{ 
  display: none;
  z-index: 1;
}
 
html, body {
  height: 100%;
  width: 100%;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f5f7fa;
}

.site-container {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  width: 100%;
   
}

.topo {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex; /* escondido inicialmente */
  align-items: center;
  justify-content: space-between;
  padding: 6px 20px;
  background-color: #fff;
  height: 70px;
  transition: 0.3s ease;
  box-shadow: 2px 2px 8px rgba(29, 28, 28, 0.2); /* sombra adicionada */
}

.topo .menu a.active {
  border-bottom: 3px solid #0a9326;
  padding: 10px 5px;
  font-display: fallback;
  border-radius: 7px 7px ;
  background-color: #000; 
  color: #ffffff;
}

.logo {
  height: 40px; /* reduz o tamanho da logo */
}

.menu a {
  margin: 0 10px;
  font-size: 14px;
  text-decoration: none;
  color: #333;
}

.agrupador-links a.active {
  background-color: rgb(11, 12, 11); 
  color: white;
}

.login {
  font-size: 14px;
  color: #333;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 5px;
}
  
/* --- Layout principal --- */
.conteudo-principal { 
  position: relative;
  width: 100%;
  height: 500px;
  /* altera conforme necessário */
  overflow: hidden;
  margin: 50px 0;
  background: #000;
  /* fallback enquanto o vídeo carrega */
  border-radius: 10px;
}

/* --- Container do vídeo (ocupa toda a área do main) --- */
/* Container do vídeo em tela cheia */
.video-container-noticia {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

/* Faz o vídeo comportar-se como um background cover */
.video-container-noticia video {
  object-fit: cover;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(var(--video-scale, 0.92));
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  display: block;
  object-fit: cover;
  pointer-events: none;
  max-width: none;
  will-change: transform;
}

/* --- Overlay / gradiente opcional para melhorar leitura --- */
.video-container-noticia::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.45) 100%);
  z-index: 1;
  pointer-events: none;
  border-radius: inherit;
}

/* --- Texto/box com informação sobre a notícia (por cima do vídeo) --- */
.data-planea {
  position: relative;
  /* fica dentro do fluxo do main, acima do vídeo */
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  /* muda para center se preferires centralizado */
  height: 100%;
  padding: 40px;
  /* espaçamento interno */
  box-sizing: border-box;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

/* Títulos e texto */
.data-planea h1 {
  margin: 0 0 8px 0;
  font-size: 2.2rem;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.data-planea p {
  margin: 0;
  font-size: 1.05rem;
  opacity: 0.95;
}

/* Se preferires o texto num canto (ex.: canto superior esquerdo) - alternativa */
/* .data-planea { align-items: flex-start; justify-content: flex-start; padding: 24px; } */

/* --- Pequenas melhorias de usabilidade --- */
/* Se quiseres que o vídeo deixe de interceptar clique quando adicionares controls */
.video-container-noticia video.controls-enabled {
  pointer-events: auto;
}

/* --- Responsividade --- */
@media (max-width: 1024px) {
  .conteudo-principal {
    height: 420px;
  }

  .data-planea {
    padding: 28px;
  }

  .data-planea h1 {
    font-size: 1.8rem;
  }

  .data-planea p {
    font-size: 1rem;
  }
}

@media (max-width: 600px) {
  .conteudo-principal {
    height: 320px;
    border-radius: 6px;
    margin: 30px 0;
  }

  .data-planea {
    padding: 18px;
    align-items: center;
    text-align: center;
  }

  .data-planea h1 {
    font-size: 1.4rem;
  }

  .data-planea p {
    font-size: 0.95rem;
  }
}

/* exemplo: reduzir ainda mais em ecrãs grandes */
@media (min-width: 1200px) {
  .video-container-noticia video {
    --video-scale: 0.5;
    /* diminui o zoom em ecrãs grandes */
  }
}

/* e em telemóveis podes deixar mais próximo para não ficar com bordas */
@media (max-width: 600px) {
  .video-container-noticia video {
    --video-scale: 0.98;
  }
}

.btn-calendario {
  display: inline-block;
  padding: 10px 20px;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s;
  font-size: 40px;
}

.img-container-noticia {
  position: relative;
  width: 100%;
  height: 550px; /* altura aumentada */
  overflow: hidden;
  margin-bottom: 40px;
}

.img-container-noticia img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.img-container-noticia::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #c2c200 100%);
  pointer-events: none;
}

.btn-calendario {

  color: #fff; /* cor branca */

border-bottom: 2px solid #fff;
  padding: 12px 28px;
  font-weight: bold;

}

.submain {
  display: flex;
  justify-content: center;         /* centraliza as imagens */
  gap: 1px;                       /* espaço entre as imagens */
  padding: 0 40px;                 /* espaço à esquerda e à direita */
  margin-bottom: 40px;
}

.submain img {
  width: 30%;                      /* cada imagem ocupa ~1/3 da largura */
  height: 200px;
  border-radius: 10px;             /* opcional: cantos arredondados */
  object-fit: cover;
}
.noticia-box p{
  color: #0c2d71;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  font-size: 10px;
  margin-bottom: 0px;
}
.noticia-box h4{
  color: #0c2453;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  font-size: 9px;
  margin-top: 0px;
}

.bloco-noticias-horizontal {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 40px;
  flex-wrap: wrap;
}

.noticia-box {
  flex: 1 1 calc(25% - 20px); /* 4 por linha com gap */
  max-width: 250px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  overflow: hidden;
  text-align: center;
}

.img-container {
  position: relative;
  height: 160px;
  overflow: hidden;
}

.img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.data-overlay {
  position: absolute;
  bottom: 8px;
  

  color: #fff;
  font-weight: bold;
  padding: 4px 10px;
 
  font-size: 14px;
  text-align: center;
}

.noticia-box .descricao1 {
  padding: 5px;
  font-size: 15px;
  font-weight: bold;
  color: #142bc6;
}

.noticia-box .TI{
  padding: 8px;
  font-size: 13px; 
  color: #000000;
}

.descricao {
  padding: 12px;
  font-size: 16px;
  font-weight: bold;
  color: #142bc6;
}

.barra-com-margem hr {
  border: none;
  border-top: 2px solid #000; /* cor e espessura da barra */
  margin: 0 200px; /* margem esquerda e direita */
  border-radius: 8px;
  margin-top: 14px;
  margin-bottom: 0px;
}


.cartao-evento {
  background-color: #0c2d71;
  color: white;
  width: 100%;
  padding: 20px 30px;
  border-radius: 15px;
  font-family: Arial, sans-serif;

  margin-right: 30px;

}

.conteudo-horizontal {
  display: flex;
  align-items: center;
  gap: 20px;
}

.icones-setas {
  font-size: 30px;
  font-weight: bold;
}

.duplo-triangulo {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.duplo-triangulo {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100px;
  height: 120px;
  overflow: hidden;
}

.triangulo {
  width: 100px;
  height: 60px;
  background-image: url('../imagem/tec.png');
  background-size: 100% 120px; /* cobre os dois triângulos como se fosse um bloco */
  background-repeat: no-repeat;
}


.triangulo.cima {
  clip-path: polygon(50% 100%, 0 0, 100% 0); /* ponta voltada para baixo */
  background-position: top;
  margin-left: 30px;
  height: 100px;
   width: 90px;

}


.triangulo.baixo {
  clip-path: polygon(0 100%, 100% 100%, 50% 0); /* ponta voltada para cima */
  background-position: bottom;
  margin-left: 10px;
   height: 50px;
   width: 50px;
    
}


.texto-bloco {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-left: 320px;
}

.titulo {
  font-size: 20px;
  text-transform: uppercase;
}

.titulo .destaque {
  font-weight: bold;
  font-size: 22px;
}

.descricao {
  font-size: 16px;
  line-height: 1.4;
  color: #fff;
}

 /* ===== Reset & variáveis ===== */
 *,
 *::before,
 *::after {
   box-sizing: border-box;
 }

 :root {
   --accent: #ff3b7a;
   --bg-footer: #0f1724;
   --text: #111;
   --muted: rgba(255, 255, 255, 0.85);
   --card-bg: rgba(255, 255, 255, 0.04);
   --radius: 10px;
 }

 /* ===== Contêiner principal ===== */
 .secao-eventos {
   width: 100%;
   max-width: 1200px;
   margin: 30px auto;
   padding: 18px;
   position: relative;
   /* necessário para .logo1 posicionado */
   color: var(--text);
   font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
 }

 /* ===== Layout: esquerda (galeria) / direita (imagem grande) ===== */
 .secao-eventos .meus_eventos {
   display: flex;
   gap: 24px;
   align-items: flex-start;
   width: 100%;
 }

 /* Lado esquerdo: lista de eventos (coluna) */
 .bloco-eventos-container {
   flex: 0 0 46%;
   background: transparent;
 }

 /* Galeria vertical: tornar scroll se muitos eventos */
 .galeria-eventos-vertical {
   display: flex;
   flex-direction: column;
   gap: 18px; 
   max-height: 460px;
   /* ajustar conforme layout */
   overflow-y: auto;
   padding-right: 6px;
   mask-repeat: no-repeat;
 }

 /* Cada evento (cartão) */
 .evento-box { 
   background: var(--card-bg);
   border-radius: 10px;
   width: 75%;
   height: 40%;
   padding: 10px;
   display: flex;
   flex-direction: column;
   gap: 10px;
   box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
 }

 /* Imagem com as badges de data */
 .imagem-com-data {
   position: relative;
   width: 100%;
   border-radius: 8px;
   overflow: hidden;
 }

 /* imagem responsiva dentro do cartão */
 .imagem-com-data img { 
   display: block;
   width: 100%;
   height: 50%;
   object-fit: cover;
 }

 /* Badge superior esquerda com dia/mes */
 .data-canto-superior {
   position: absolute;
   top: 8px;
   left: 8px;
   background: rgba(0, 0, 0, 0.6);
   color: #fff;
   padding: 6px 8px;
   border-radius: 6px;
   display: flex;
   flex-direction: column;
   align-items: center;
   text-align: center;
   z-index: 3;
   min-width: 48px;
 }

 /* Estilos do dia e mês */
 .data-canto-superior .dia {
   font-weight: 700;
   font-size: 1.25rem;
   line-height: 1;
 }

 .data-canto-superior .mes {
   font-size: 0.75rem;
   text-transform: capitalize;
   opacity: 0.95;
 }

 /* Ano no canto inferior direito */
 .ano-canto-inferior {
   position: absolute;
   bottom: 8px;
   right: 8px;
   background: rgba(0, 0, 0, 0.45);
   color: #fff;
   padding: 4px 8px;
   border-radius: 6px;
   font-weight: 600;
   z-index: 3;
   font-size: 0.85rem;
 }

 /* Link do evento */
 .link-evento {
   color: var(--muted);
   text-decoration: none;
   font-weight: 600;
   font-size: 1rem;
   transition: color .18s ease, transform .12s ease;
 }

 .link-evento:hover {
   color: white;
   transform: translateY(-2px);
 }

 /* Paginação */
 .paginacao {
   display: flex;
   gap: 8px;
   align-items: center;
   margin-top: 6px;
   padding-top: 6px;
   border-top: 1px dashed rgba(255, 255, 255, 0.03);
 }

 .paginacao .pagina {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   min-width: 36px;
   height: 36px;
   border-radius: 6px;
   background: rgba(255, 255, 255, 0.04);
   color: var(--muted);
   text-decoration: none;
   font-weight: 600;
 }

 .paginacao .pagina.ativa {
   background: var(--accent);
   color: #fff;
   box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
 }

 /* ===== Lado direito: imagem grande / carrossel ===== */
.foto1 {
  position: relative;
  margin: 10px 30px 10px 5px;
  width: 90%;
  max-width: 800px;
  /* ajusta conforme teu layout */
  height: 450px;
  /* altura do carrossel */
  overflow: hidden;
  border-radius: 10px;
}

.foto1 .carrossel-imagem {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}

/* A imagem ativa fica visível */
.carrossel-imagem.ativa {
  opacity: 1;
  z-index: 1;
}

 .foto1 .carrossel-imagem:first-child {
   display: block;
   /* mostra a primeira imagem como destaque */
 }

 /* Se queres que as imagens transitem suavemente quando trocar via JS */
 .foto1 .carrossel-imagem {
   transition: opacity .45s ease, transform .45s ease;
 }

 /* ===== Logo posicionado (ex: canto superior direito do bloco) ===== */
 .logo1 {
   position: absolute;
   top: 25px;
   right: 60px;
   width: 88px;
   height: auto;
   z-index: 2;
   filter: drop-shadow(0 6px 18px rgba(0, 0, 0, 0.25));
 }

 /* ===== Footer dentro da secção (grid de colunas) ===== */
 .footer-conten {
   margin-top: 22px;
   display: flex;
   gap: 26px; 
   padding: 24px;
   border-radius: 10px;
   color: var(--muted);
   align-items: flex-start;
 }

 /* coluna esquerda com QR */
 .coluna-esquerda {
   flex: 0 0 220px;
 }

 .coluna-esquerda p {
   margin: 0 0 12px 0;
   line-height: 1.3;
 }

 .coluna-esquerda .QR img {
   width: 110px;
   height: 110px;
   object-fit: cover;
   border-radius: 6px;
   display: block;
   margin: 12px 0;
 }

 /* colunas info */
 .colunas-horizontais {
   display: flex;
   gap: 24px;
   flex: 1 1 auto;
 }

 .colunas-horizontais .coluna h3 {
   margin: 0 0 8px 0;
   color: white;
 }

 .colunas-horizontais .coluna p {
   margin: 6px 0;
   opacity: 0.9;
 }

 /* redes sociais (canto inferior direito) */
 .redes-sociais {
   position: absolute;
   bottom: 14px;
   right: 18px;
   display: flex;
   gap: 10px;
   z-index: 12;
 }
 

 /* ===== Imagens e media seguras ===== */
 img,
 video {
   max-width: 100%;
   height: auto;
   display: block;
 }

 /* ===== Responsividade ===== */
 @media (max-width: 1000px) {
   .bloco-eventos-container {
     flex: 0 0 50%;
   }

   .foto1 {
     flex: 0 0 50%;
     height: 100%;
   }

   .foto1 .carrossel-imagem {
     height: 360px;
   }
 }

 @media (max-width: 800px) {
   .secao-eventos {
     padding: 12px;
   }

   .meus_eventos {
     flex-direction: column-reverse;
     gap: 16px;
   }

   /* em mobile mostramos a imagem antes para destaque */
   .foto1 {
     order: -1;
     width: 100%;
   }

   .bloco-eventos-container {
     width: 100%;
     flex: 1 1 auto;
   }

   .galeria-eventos-vertical {
     max-height: none;
   }

   .foto1 .carrossel-imagem {
     height: 260px;
     display: block;
   }

   /* garante imagem visível */
   .logo1 {
     top: 10px;
     right: 10px;
     width: 72px;
   }

   .footer-conten {
     flex-direction: column;
     gap: 16px;
   }

   .redes-sociais {
     position: static;
     margin-top: 8px;
   }
 }

 @media (max-width: 420px) {
   .imagem-com-data img {
     height: 120px;
   }

   .data-canto-superior .dia {
     font-size: 1rem;
   }

   .data-canto-superior .mes {
     font-size: 0.65rem;
   }

   .ano-canto-inferior {
     font-size: 0.75rem;
   }
 }

.pagina:hover,
.pagina.ativa {
  background-color: #0f74d1;
}
 

 .footer-conten {
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
      background: rgba(255, 255, 255, 0.04);
      padding: 40px;
      font-family: Arial, sans-serif;
      color: #3950e3;
    }

 /* Lado esquerdo: texto + QR + contatos + ícones */
 .coluna-esquerda {
   flex: 1;
   border-radius: 15px;
   color: #080a14;
   font-size: 12px;
 }

 .coluna-esquerda p {

   text-align: center;

 }


 .QR {
   width: 120px;
   height: 120px;
   display: flex;
   justify-content: center;
   align-items: center;
   text-align: center;
   margin-top: 0%;
   margin: 0 auto;
   /* <-- Centraliza horizontalmente */
 }

 .no-break {
   white-space: nowrap;
   /* Impede qualquer quebra de linha */
 }


 .QR img {
   width: 90%;
   height: 90%;
   text-align: center;
   margin-top: 0%;
 }

    .colunas-horizontais .coluna h3{
      color: #000;
      font-size: 1.0rem; 
    }

    @keyframes girar {
      from { transform: rotate(0deg); }
      to { transform: rotate(360deg); }
    }

    /* Ícones das redes sociais */ 
        .redes-sociais {
          display: flex;
          gap: 15px;
          margin-left: 190px;
          margin-bottom: -50px;
        }
    
        .redes-sociais a {
          display: inline-flex;
          align-items: center;
          justify-content: center;
          width: 45px;
          height: 45px;
          margin: 0 5px;
          border-radius: 50%;
          background: #1939f0;
          color: white;
          font-size: 25px;
          /* <-- AQUI controla o tamanho dos ícones */
          transition: all 0.2s ease;
        }
    
        .redes-sociais a i {
          font-size: inherit;
          /* ícone herda o tamanho definido no link */
        }
    
        .redes-sociais a:hover {
          background: #0a9326;
          color: #0a0e25;
          transform: scale(1.2);
        }
    
        /* EFEITOS INDIVIDUAIS */
        .redes-sociais a:nth-child(1):hover {
          border: #080a14 1px solid;
          color: #FFFFFF;
          background: #2004f3;
          -webkit-background-clip: text;
          -webkit-text-fill-color: transparent;
          font-weight: bold;
          transform: scale(1.3);
        }
    
        .redes-sociais a:nth-child(2) {
          background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
        }
    
        .redes-sociais a:nth-child(2):hover {
          border: #080a14 1px solid;
          background: linear-gradient(red, yellow, rgb(247, 5, 210), blue);
          -webkit-background-clip: text;
          -webkit-text-fill-color: transparent;
          font-weight: bold;
          transform: scale(1.3);
        }
    
        .redes-sociais a:nth-child(3) {
          color: #ffffff;
          background: #4fcb68;
        }
    
        .redes-sociais a:nth-child(3):hover {
          border: #080a14 1px solid;
          color: #ffffff;
          background: #448c52;
          -webkit-background-clip: text;
          -webkit-text-fill-color: transparent;
          font-weight: bold;
          transform: scale(1.3);
        }
    
        /* Animação para gradiente animado */
        @keyframes moverGradiente {
          0% {
            background-position: 0% 50%;
          }
    
          100% {
            background-position: 100% 50%;
          }
        }
    
        .texto-gradiente {
          background: linear-gradient(90deg, #00ff88, #0066ff, #ff00ff);
          background-size: 200% 200%;
          -webkit-background-clip: text;
          -webkit-text-fill-color: transparent;
          animation: moverGradiente 4s linear infinite;
        }

    /* Colunas do lado direito */
    .colunas-horizontais {
      flex: 2;
      display: flex;
      justify-content: space-around;
      flex-wrap: wrap;
      gap: 30px;
    }

    .coluna {
      min-width: 200px;
    }

    .coluna h3 {
      margin-bottom: 10px;
      color: #1c2772;
      font-size: 17px;

      display: inline-block;
      padding-bottom: 1px;
    }

    .coluna p {
      margin: 8px 0;
      color: #151c46;
      line-height: 1.6;
      font-size: 12px;
    }

.logo1 {
  width: 150px;           /* Tamanho ajustável da logo */
  height: auto;
  margin-left: 150px;      /* Espaço à esquerda */
  margin-top: auto;
  display: block;   

}

    
/* RODAPÉ */
 footer {
      background-color: #ffffff;
      padding: 15px 40px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      border-top: 2px solid #aea4a4;
      font-family: Arial, sans-serif;
      flex-wrap: wrap;
      margin-top: 40px;
    }

    footer p {
      margin: 0;
      color: #313866;
      font-size: 14px;
      text-align: center;
        margin: 0 auto;
    }
footer p a {
  text-decoration: none;
  /* remove sublinhado */
  border: none;
  /* remove bordas */
  outline: none;
  /* remove contorno padrão */
  font-style: normal;
  font-weight: 400;
  cursor: pointer;
  display: inline-block;
  /* necessário para o transform funcionar bem */
  transition: all 0.4s ease;

  /* Gradiente visível desde o início */
  background: linear-gradient(90deg, #00ff88, #0066ff, #ff00ff);
  background-size: 100% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

footer p {
  text-decoration: none;
  /* remove sublinhado */
  border: none;
  /* remove bordas */
  outline: none;
  /* remove contorno padrão */
  font-style: normal;
  font-weight: 500;
  cursor: pointer;
  display: inline-block;
  /* necessário para o transform funcionar bem */
  transition: all 0.4s ease;

  /* Gradiente visível desde o início */
  background: linear-gradient(90deg, #00ff88, #0066ff, #ff00ff);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Efeito ao passar o mouse para o Link */
footer p a:hover,
footer p a:focus {
  transform: scale(1.3);
  background-position: 100% 0;
  /* faz o gradiente “mover” */
  filter: brightness(1.3);
  /* destaca as cores */
}

/* Efeito ao passar o mouse para o @ */
footer p:hover,
footer p:focus {
  transform: scale(1.3);
  background-position: 100% 0;
  /* faz o gradiente “mover” */
  filter: brightness(1.3);
  /* destaca as cores */
}

/* Melhora a acessibilidade: mostra um foco visível só quando for realmente necessário */
footer p a:focus-visible {
  outline: 3px solid rgba(0, 120, 200, 0.85);
  outline-offset: 3px;
}

/* Melhora a acessibilidade: mostra um foco visível só quando for realmente necessário */
footer p:focus-visible {
  outline: 3px solid rgba(0, 120, 200, 0.85);
  outline-offset: 3px;
}

    .icones-direita {
      display: flex;
      gap: 30px;
      align-items: center;
    }

    .item-icone {
      display: flex;
      align-items: center;
      gap: 8px;
      color: #1b2355;
      font-size: 14px;
      text-decoration: none;
      transition: color 0.3s ease;
    }
  
 .item-icone1 {
  color: red;
  border-bottom: none; /* remove qualquer borda inferior */
   text-decoration: none;
  
}


    .item-icone i {
      font-size: 18px;
    }

    .item-icone:hover {
      color: #0a0e25;
    }

/*   */