:root {
	--blue: #007bff;
	--indigo: #6610f2;
	--purple: #6f42c1;
	--pink: #e83e8c;
	--red: #dc3545;
	--orange: #fd7e14;
	--yellow: #ffc107;
	--green: #28a745;
	--teal: #20c997;
	--cyan: #17a2b8;
	--white: #fff;
	--gray: #6c757d;
	--gray-dark: #343a40;
	--primary: #007bff;
	--secondary: #2F4538;
	--success: #2F4538;
	--info: #17a2b8;
	--warning: #ffc107;
	--danger: #dc3545;
	--light: #f8f9fa;
	--dark: #343a40;
  --ciano: #00d1ff;
	--breakpoint-xs: 0;
	--breakpoint-sm: 576px;
	--breakpoint-md: 768px;
	--breakpoint-lg: 992px;
	--breakpoint-xl: 1200px;
  --font-family-sans-serif: 'Open Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
	--font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace
}

/* =============== HEADER =============== */

/* Scroll offset para âncoras */
#home
, #about
, #technology
, #certification
, #projects
, #contact {
  scroll-margin-top: 100px;
}

/* Estilos gerais */
.header-topico {
  font-family: 'Segoe UI', sans-serif;
  position: fixed;
  top: 0;
  left: 0;
  height: 6%;
  width: 100%;
  z-index: 100;
  padding: 0;
  min-height: 50px;
  display: flex;
  justify-content: center;
  transform: scale(1.10);
background-image: linear-gradient(
  to bottom,
  rgba(0, 0, 0, 0.5) 0%,
  rgba(0, 0, 0, 0.48) 20%,
  rgba(0, 0, 0, 0.4) 40%,
  rgba(0, 0, 0, 0.3) 60%,
  rgba(0, 0, 0, 0.15) 80%,
  rgba(0, 0, 0, 0.05) 90%,
  transparent 100%
);
  background-color: transparent;
}

.nav-headertopico {
  display: flex;
  gap: 40px;  /* largura entre os topicos gerais */
  background-color: transparent;

  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

nav a {
  color: white;
  font-size: 1.2rem;
  font-weight: 300;
  text-decoration: none;
  transition: color 0.3s ease;
  text-transform: none;

  letter-spacing: 1px;
  opacity: 0;
  animation: fadeDown 1.5s ease forwards;
}

nav a:hover {
  color: rgba(255, 255, 255, 0.699);
  text-decoration: none;
  transform: translateY(20px);
  transition: transform 0.3s ease-in-out;
}

/* Animação de entrada dos links */
@keyframes fadeDown {
  0% {
    opacity: 0;
    transform: translateY(100px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

nav a:nth-child(1) { animation-delay: 0.3s; }
nav a:nth-child(2) { animation-delay: 0.5s; }
nav a:nth-child(3) { animation-delay: 0.7s; }
nav a:nth-child(4) { animation-delay: 0.9s; }
nav a:nth-child(5) { animation-delay: 1.1s; }
nav a:nth-child(6) { animation-delay: 1.3s; }


.container-name-text-titulo {
  position: fixed;
  top: 0;
  left: 0;
  height: 6%;
  width: 300px;
  z-index: 101;
  padding-top: 10px;
  padding-left: 100px;
  min-height: 50px;
  display: flex;
  justify-content: left;
  transform: scale(1.10);
  background-color: transparent;
}


/* port */
.name-text-titulo {
  font-size: 2.5rem;
  font-weight: 500;
  margin: 0px 0px;
  transform: translateX(-100px);
  animation: PorfolioslideRightAndBack 2s ease-out forwards;
  animation-delay: 0s;

}

/* folio */
.name-text-titulo-second {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--secondary);
}

@keyframes PorfolioslideRightAndBack {
  0% {
    opacity: 0;
    color: rgba(255, 255, 255, 0.2);
    transform: translateX(-100px);
  }
  60% {
    opacity: 0.5;
    color: rgba(255, 255, 255, 0.7);
    transform: translateX(0);
  }
  100% {
    opacity: 1;
    color: rgba(255, 255, 255, 1);
    transform: translateX(0);
  }
}

/* Media Query para Smartphones (menor que 676px) */
@media screen and (max-width: 576px) {
  .header-topico {
    padding-top: 20px;
    min-height: 40px;
    transform: scale(1);
    justify-content: flex-end;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 8%;
    overflow: visible;
    scroll-behavior: smooth;
    background-image: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.5) 0%,
    rgba(0, 0, 0, 0.48) 20%,
    rgba(0, 0, 0, 0.4) 40%,
    rgba(0, 0, 0, 0.3) 60%,
    rgba(0, 0, 0, 0.15) 80%,
    rgba(0, 0, 0, 0.05) 90%,
    transparent 100%
  );
  }

  .nav-headertopico {
    display: none;
    flex-direction: column;
    gap: 20px;
    position: absolute;
    top: 50px;
    right: 10px;
    background-color: transparent;
    padding: 20px;
    align-items: normal;
    border-radius: 5px;
  }

  .nav-headertopico.show {
    display: flex;
    background-image: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.5) 0%,
    rgba(0, 0, 0, 0.48) 20%,
    rgba(0, 0, 0, 0.4) 40%,
    rgba(0, 0, 0, 0.3) 60%,
    rgba(0, 0, 0, 0.15) 80%,
    rgba(0, 0, 0, 0.05) 90%,
    transparent 100%
  );
  }

  nav a {
    font-size: 1rem;
    pointer-events: auto;
  }

  .container-name-text-titulo {
    position: fixed;
    top: 0;
    left: 0;
    height: 6%;
    width: 100px;
    z-index: 101;
    padding-top: 10px;
    padding-left: 20px;
    min-height: 50px;
    display: flex;
    text-align: center;
    justify-content: left;
    transform: scale(1.10);
    background-color: transparent;
  }

  .name-text-titulo {
    font-size: 2rem;
    font-weight: 700;
    margin: 0;
    transform: translateX(-50px);
  }

  .name-text-titulo-second {
    font-size: 1rem;
    font-weight: 800;
    color: var(--secondary);
  }

  .hamburger {
    display: block;
    position: absolute;
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    cursor: pointer;
    z-index: 100;
    outline: none;
    pointer-events: auto;
  }

  .hamburger span {
    display: block;
    width: 20px;         /* largura maior para parecer linha */
    height: 3px;         /* altura menor para ser linha fina */
    background-color: white;
    border-radius: 2px;  /* arredondamento suave nas bordas */
    position: absolute;
   left: 50%;
    transform: translateX(-50%);
  }

  .hamburger span:nth-child(1) { top: 14px; }
  .hamburger span:nth-child(2) { top: 22px; }
  .hamburger span:nth-child(3) { top: 30px; }
}

/* Media Query para Tablets (576px a 1024px) */
@media screen and (max-width: 1400px) and (min-width: 576px){
   .header-topico {
    padding-top: 20px;
    min-height: 40px;
    transform: scale(1);
    justify-content: flex-end;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 7%;
    overflow: visible;
    scroll-behavior: smooth;
    background-image: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.5) 0%,
    rgba(0, 0, 0, 0.48) 20%,
    rgba(0, 0, 0, 0.4) 40%,
    rgba(0, 0, 0, 0.3) 60%,
    rgba(0, 0, 0, 0.15) 80%,
    rgba(0, 0, 0, 0.05) 90%,
    transparent 100%
  );
  }

  .nav-headertopico {
    display: none;
    flex-direction: column;
    gap: 20px;
    position: absolute;
    top: 50px;
    right: 10px;
    background-color: transparent;
    padding: 20px;
    align-items: normal;
    border-radius: 5px;
  }

  .nav-headertopico.show {
    display: flex;
    background-image: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.5) 0%,
    rgba(0, 0, 0, 0.48) 20%,
    rgba(0, 0, 0, 0.4) 40%,
    rgba(0, 0, 0, 0.3) 60%,
    rgba(0, 0, 0, 0.15) 80%,
    rgba(0, 0, 0, 0.05) 90%,
    transparent 100%
  );
  }

  nav a {
    font-size: 1rem;
    pointer-events: auto;
  }
  .container-name-text-titulo {
  padding-top: 10px;
  }

  .name-text-titulo {
    font-size: 2rem;
    font-weight: 700;
    margin: 0;
    transform: translateX(-50px);
  }

  .name-text-titulo-second {
    font-size: 1rem;
    font-weight: 800;
    color: var(--secondary);
  }
  .hamburger {
    display: block;
    position: absolute;
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    cursor: pointer;
    z-index: 100;
    outline: none;
    pointer-events: auto;
  }

  .hamburger span {
    display: block;
    width: 20px;         /* largura maior para parecer linha */
    height: 3px;         /* altura menor para ser linha fina */
    background-color: white;
    border-radius: 2px;  /* arredondamento suave nas bordas */
    position: absolute;
   left: 50%;
    transform: translateX(-50%);
  }

  .hamburger span:nth-child(1) { top: 14px; }
  .hamburger span:nth-child(2) { top: 22px; }
  .hamburger span:nth-child(3) { top: 30px; }
}


/* =============== MAIN CONTENT - estilo inicial capa fundo ========== */

/* Imagem fixa do rodapé, inicialmente invisível */
.background-rodape {
  position: fixed;
  width: 100%;
  height: 100%;
  bottom: 0;
  background-image: url('../../../midia/imagem/capa_rodape-1920x1080.webp'); /* Substitua pelo caminho correto */
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  z-index: -1;
  transition: opacity 0.1s ease;
  border-image: fill 0 linear-gradient(#0003, #000000b0);
}

.animate-zoom {
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-zoom.visible {
  opacity: 1;
  transform: scale(1);
}

.container-button {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto
}

.intro-container {
  position: relative;
  z-index: 1;
  padding: 100px; /* Dá espaço entre o topo e o conteúdo */
  text-align: left;
  overflow: visible;
  color: var(--white);
  font-family: 'Segoe UI', sans-serif;
  height: 100vh;
  display: flex;
  flex-direction: column; /* Alinha os itens na vertical */
  justify-content: center; /* Centraliza na vertical */
}

/* "configuracoes de cores para manipulacao" */
.white-cor-text {
  color: white;
}

.secondary-cor-text {
  color: #2F4538;
}

/* "Olá, meu nome é" */
.small-text {
  width: 100%;
  font-size: 1.5rem;
  font-weight: 300;
  margin: 0;
  opacity: 0;
  transform: translateY(0px);
  animation: slideDown 1.5s ease-out forwards;
  animation-delay: 1s;
}
  
/* Gabriel Araujo" */
.name-text {
  width: 100%;
  font-size: 5rem;
  font-weight: 500;
  margin: 30px 0px;
  opacity: 0;
  transform: translateX(-100px);
  animation: slideRightAndBack 1.5s ease-out forwards; 
  animation-delay: 1.2s;
}
  
/* "Atuo como profissional registrado na área de Engenharia da Computação" */
.role-text {
  width: 100%;
  font-size: 1.5rem;
  font-weight: 300;
  opacity: 0;
  transform: translateY(0px);
  animation: slideUp 1.5s ease-out forwards;
  animation-delay: 1s;
}

.animacao-icon-rede-social {
  width: 100%;
  display: flex;
  gap: 20px; /* Espaço entre os ícones */
  background-color: transparent; /* Mantém o fundo branco */
}
  
.animacao-icon-rede-social a {
  opacity: 0;
  transform: translateX(-50px);
  animation: animacao-icon-rede-social-slideInLeft 0.5s ease-out forwards;
  display: inline-block; /* Garante que você possa ajustar o padding e tamanho */
  padding: 0px; /* Diminui o tamanho da área sensível */
  border-radius: 5px; /* Deixa mais arredondado se quiser */
  transition: background-color 0.3s ease; /* Suaviza o hover */
}
  
.animacao-icon-rede-social img,
.animacao-icon-rede-social i,
.animacao-icon-rede-social .icone {
  width: 50px;
  height: 50px;
}
.animacao-icon-rede-social a:hover {
  background-color: var(--white); /*rgba(0, 209, 255,  0.5) Azul fraco com opacidade baixa */
}

/* Animação em cascata: um por um */
.animacao-icon-rede-social a:nth-child(1) { animation-delay: 2.0s; }
.animacao-icon-rede-social a:nth-child(2) { animation-delay: 2.2s; }
.animacao-icon-rede-social a:nth-child(3) { animation-delay: 2.4s; }
.animacao-icon-rede-social a:nth-child(4) { animation-delay: 2.6s; }

  /* Animação de botao download curriculo */
.animacao-button-entrada {
  display: flex;

}

.animacao-button-entrada a {
  margin-top: 20px;
  opacity: 0;
  transform: translateX(-50px);
  animation: animacao-button-entrada-slideInLeft 0.5s ease-out forwards;
  transition: background-color 0.3s ease; /* Suaviza o hover */
}

/* Animação em cascata: um por um */
.animacao-button-entrada a:nth-child(1) {
  animation-delay: 2.9s;
}

@keyframes animacao-button-entrada-slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

  
@keyframes animacao-icon-rede-social-slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
  
/* Animations */
@keyframes slideDown {
  0% {
    opacity: 0;
    transform: translateY(-130px);  /* altura do surgimento topo */
  }
  60% {
    opacity: 1;
    transform: translateY(20px); /* Move um pouco para a baixo */
  }
  100% {
    opacity: 1;
    transform: translateY(0px);
  }
}
  
@keyframes slideRightAndBack {
  0% {
    opacity: 0;
    transform: translateX(-60px); /* Inicia vindo da esquerda */
  }
  60% {
    opacity: 1;
    transform: translateX(15px); /* Move um pouco para a direita */
  }
  100% {
    opacity: 1;
    transform: translateX(0); /* Volta para a posição original */
  }
}

@keyframes slideUp {
  0% {
    opacity: 0;
    transform: translateY(130px);  /* altura do surgimento */
  }
  60% {
    opacity: 1;
    transform: translateY(-20px); /* Move um pouco para a cima */
  }
  100% {
    opacity: 1;
    transform: translateY(0); /* Volta para a posição original */
  }
}

.word-container {
  position: relative;
  width: 100%;
  height: 50px; /* Ajuste conforme o tamanho da fonte */
  text-align: left;
  overflow: hidden;
}

.word {
  position: absolute;
  width: 100%;
  font-weight: 700;
  color: #2F4538;
  white-space: nowrap;
  opacity: 0;
  transform: translateY(20px);
  animation: slideUpWords 10s infinite; /* 1s por palavra, 5 palavras */
}

/* Delays para sequência imediata */
.word:nth-child(1) { animation-delay: 1s; }
.word:nth-child(2) { animation-delay: 3s; }
.word:nth-child(3) { animation-delay: 5s; }
.word:nth-child(4) { animation-delay: 7s; }
.word:nth-child(5) { animation-delay: 9s; }

@keyframes slideUpWords {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  10% {
    opacity: 1;
    transform: translateY(0);
  }
  15% {
    opacity: 1;
    transform: translateY(0);
  }
  20% {
    opacity: 0;
    transform: translateY(-20px);
  }
  20.1% {
    opacity: 0;
    transform: translateY(20px); /* Volta ao início para o próximo ciclo */
  }
  100% {
    opacity: 0;
    transform: translateY(20px);
  }
}
  

/* Media Query para Smartphones (menor que 576px) */
@media screen and (max-width: 576px) {
  .intro-container {
    width: 100%;
    padding-top: 200px;
    padding-left: 20px;    /*tamnho da largura de margin a esquerda*/
    padding-right: 20px;    /*tamnho da largura de margin a direita*/
    padding-bottom: 20px;

    
  }



  .secondary-cor-text {
    color: #7fb997;
  }

  /*ola, meu nome é*/
  .small-text {
    width: 100%;
    font-size: 15px;
    font-weight: 300;
  }
  
  /* Gabriel Araujo" */
  .name-text {
    width: 100%;
    font-size: 3rem;
    font-weight: 500;
    text-align: left;
  }
  
  /* "Atuo como profissional registrado na área de Engenharia da Computação" */
  .role-text {
    width: 100%;
    font-size: 15px;
    font-weight: 300;
    padding-right: 50%;
  }

  .word {
    color: #7fb997;
  }

  .animacao-icon-rede-social {
    width: 100%;
    gap: 0px; /* Espaço entre os ícones */
  }
}

/* Media Query para Tablets (576px a 1024px) */
@media screen and (max-width: 1400px) and (min-width: 576px){

 .intro-container {
    width: 100%;
    padding: 100px;    /*tamnho da largura de margin a esquerda*/
  }


  /*ola, meu nome é*/
  .small-text {
    width: 100%;
    font-size: 18px;
    font-weight: 400;
  }
  
  /* Gabriel Araujo" */
  .name-text {
    width: 100%;
    font-size: 3.5rem;
    font-weight: 500;
  }
  
  /* "Atuo como profissional registrado na área de Engenharia da Computação" */
  .role-text {
    width: 100%;
    font-size: 18px;
    font-weight: 300;
    padding-right: 50%;
  }
  .animacao-icon-rede-social {
    gap: 0px;
    width: 100%;
  }
}


/* =============== estilo contato pagina =============== */

.contact-container {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 50px rgba(0, 0, 0, 0.1);
  width: 500px; /* Valor padrão */
  height: 400px; /* Valor padrão */
  box-sizing: border-box;
  position: relative;
  z-index: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 50px auto;
}

.contact-container-titulo {
  background-color: #fff;
  margin-top: 10px;
  margin-right: 100px;
  padding: 30px;
  padding-right: 100px;
  border-radius: 5px;
  box-shadow: 0 4px 50px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 500px;
  position: relative;
  z-index: 1;
  margin-bottom: 80px;
}

.mensagem-end p {
  margin: 0;
  color: red;
  font-size: 14px;
  text-align: center;
  position: relative;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
}

.contact-container h2 {
  text-align: center;
  margin-bottom: 20px;
  color: #343a40;
}

.form-group {
  margin-bottom: 15px;
}

.form-group label {
  display: block;
  margin-bottom: 5px;
  color: #6c757d;
  font-weight: 500;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ced4da;
  background-color: #F8F9FA;
  border-radius: 5px;
  font-size: 16px;
  color: #343a40;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #007bff;
  outline: none;
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
  max-height: 100px;
}


/* Media Query para Smartphones (até 576px) */
@media screen and (max-width: 576px) {
  .contact-container {
    width: 350px;
    max-width: 350px;
    height: 350px;
    padding: 20px; /* Reduz padding para maximizar espaço */
    margin: 20px auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Ajusta distribuição dos elementos */
  }

  .contact-container h2 {
    font-size: 16px; /* Reduz o tamanho do título */
    margin-bottom: 10px;
  }

  .form-group {
    margin-bottom: 15px; /* Reduz margem para economizar espaço */
  }

  .form-group label {
    font-weight: 500; /* Reduz tamanho do texto do label */
    margin-bottom: 5px;
  }

  .form-group input,
  .form-group textarea {
    width: 100%;
    font-size: 13px; /* Reduz tamanho da fonte */
    padding: 6px; /* Reduz padding dos campos */
    box-sizing: border-box; /* Garante que padding não aumente o tamanho */
  }

  .form-group textarea {
    min-height: 80px; /* Reduz altura da textarea */
    max-height: 80px;
  }
}


/* =============== FOOTER =============== */

/* Estilização do footer */
.footer-rodape {
	position: relative;
	padding: 50px 0; /* Ajuste o padding para alterar a altura do footer */
	text-align: left; /* Alinha o texto à esquerda */
	font-size: 14px;
	border-top: 0px solid #dee2e6; /* Ajuste a espessura ou cor da linha superior */
	width: 70%; /* Ajuste a largura do footer (atualmente 50% da página) */
	margin: 40px auto 0; /* Centraliza o footer horizontalmente e define margem superior */
	text-decoration: none;
}

/* Linha superior do footer */
footer::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 1px; /* Ajuste a altura da linha */
	background-color: #dee2e6; /* Ajuste a cor da linha */
}

/* Texto do footer */
.footer-text {
	margin: 0;
	color: #6c757d;
	text-decoration: none;
}
.footer-text a{
	margin: 0;
	text-decoration: none;
}

/* Link "Voltar ao topo" */
.footer-link {
	position: absolute;
	right: 0px; /* Ajuste a posição horizontal do link */
	top: 50%;
	transform: translateY(-50%); /* Centraliza verticalmente o link */
	color: #007bff;
	text-decoration: none;
	font-size: 14px;
	transition: color 0.3s ease;
}

.footer-link:hover {
	color: #0056b3;
	text-decoration: none;
}

/* Media Query para Smartphones (até 576px) */
@media screen and (max-width: 576px) {
	footer {
		position: relative;
		padding: 15px 0; /* Ajuste o padding em telas menores */
		font-size: 12px;
		width: 100%; /* Aumenta a largura em telas menores */
	}

	.footer-rodape {
		position: relative;
		padding: 20px 0; /* Ajuste o padding para alterar a altura do footer */
		text-align: justify; /* Alinha o texto à esquerda */
		font-size: 13px;
		border-top: 0px solid #dee2e6; /* Ajuste a espessura ou cor da linha superior */
		width: 80%; /* Ajuste a largura do footer (atualmente 50% da página) */
		margin: 40px auto 0; /* Centraliza o footer horizontalmente e define margem superior */
		text-decoration: none;
	}

	.footer-link {
		position: relative;
		margin-top: 10px; /* Ajuste a margem superior do link em telas menores */
		display: block;
		text-align: right;
		flex-direction: column;
		font-size: 13px;
	}
}


/* Media Query para Tablets (576px a 1024px) */
@media screen and (max-width: 1024px) and (min-width: 576px){
	footer {
		position: fixed; /* Mantém fixo */
		bottom: 0;
		padding: 15px 0;
		font-size: 13px; /* Ajuste leve no tamanho da fonte */
		width: 50%; /* Ocupa toda a largura */
	}

	.footer-rodape {
		position: relative;
		padding: 20px 0; /* Ajuste o padding para alterar a altura do footer */
		text-align: justify; /* Alinha o texto à esquerda */
		font-size: 13px;

		border-top: 0px solid #dee2e6; /* Ajuste a espessura ou cor da linha superior */
		width: 80%; /* Ajuste a largura do footer (atualmente 50% da página) */
		margin: 40px auto 0; /* Centraliza o footer horizontalmente e define margem superior */
		text-decoration: none;
	}

	.footer-link {
		position: static;
		margin-top: 10px;
		display: block;
		text-align: right;
		flex-direction: column;
		font-size: 13px;
	}
}

/* Media Query para Notebooks 1080p (768px a 1366px) */
@media screen and (min-width: 768px) and (max-width: 1366px) {
	footer {
		position: fixed; /* Mantém fixo */
		bottom: 0;

		padding: 20px 0; /* Aumenta o padding para telas maiores */
		font-size: 14px; /* Tamanho de fonte padrão */
		width: 50%; /* Ocupa toda a largura */
	}

	.footer-rodape {
		position: relative;
		padding: 20px 0; /* Ajuste o padding para alterar a altura do footer */
		text-align: justify; /* Alinha o texto à esquerda */
		font-size: 13px;

		border-top: 0px solid #dee2e6; /* Ajuste a espessura ou cor da linha superior */
		width: 80%; /* Ajuste a largura do footer (atualmente 50% da página) */
		margin: 40px auto 0; /* Centraliza o footer horizontalmente e define margem superior */
		text-decoration: none;
	}


	.footer-link {
		position: absolute; /* Volta a ser absoluto, já que há mais espaço */
		right: 20px;
		top: 50%;
		transform: translateY(-50%);
		text-align: center;
		font-size: 14px;
	}
}