/* Barra de Progresso */
/*#progress-bar {
/*  position: fixed;
/*  top: 0;
/*  left: 0;
/*  width: 0%;
/*  height: 5px;
/*  background-color: var(--primary-color);
/*  z-index: 999;
/*}

/* Ajustar o tamanho da imagem em todas as telas */
.small-logo {
  max-width: 100%; /* A imagem vai ocupar no máximo 100% da largura do contêiner */
  height: auto; /* Mantém a proporção da imagem */
  display: block; /* Faz com que a imagem ocupe o espaço sem quebras de linha */
  margin: 0 auto; /* Centraliza a imagem */
}

/* Telas muito grandes (desktop, monitores ultra-wide) */
@media (min-width: 1600px) {
  .small-logo {
    max-width: 400px; /* Ajuste para telas muito grandes */
  }
}

/* Telas grandes (desktops convencionais) */
@media (min-width: 1200px) and (max-width: 1599px) {
  .small-logo {
    max-width: 350px; /* Ajuste para telas grandes */
  }
}

/* Telas médias (notebooks e tablets grandes) */
@media (min-width: 992px) and (max-width: 1199px) {
  .small-logo {
    max-width: 300px; /* Ajuste para telas médias */
  }
}

/* Telas menores (tablets pequenos e dispositivos de tela média) */
@media (min-width: 768px) and (max-width: 991px) {
  .small-logo {
    max-width: 250px; /* Ajuste para tablets pequenos */
  }
}

/* Telas pequenas (smartphones grandes) */
@media (max-width: 767px) {
  .small-logo {
    max-width: 250px; /* Ajuste para smartphones grandes */
  }
}

/* Telas muito pequenas (smartphones pequenos) */
@media (max-width: 480px) {
  .small-logo {
    max-width: 180px; /* Ajuste para smartphones pequenos */
  }
}

/* Telas extras pequenas (smartphones muito pequenos, tipo dispositivos de entrada) */
@media (max-width: 320px) {
  .small-logo {
    max-width: 100px; /* Ajuste para dispositivos muito pequenos */
  }
}

/* Índice de Passos */
#steps-nav {
  background-color: var(--primary-color); /* Cor verde aplicada ao header */
  padding: 10px;
  text-align: center;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); /* Sombra suave para profundidade */
}

#steps-nav ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
}

#steps-nav ul li {
  margin: 0 15px;
}

#steps-nav ul li a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s;
}

#steps-nav ul li a:hover {
  background-color: rgba(255, 255, 255, 0.1); /* Feedback visual ao hover */
  text-decoration: underline;
}

/* Tema Dinâmico */
body {
  font-family: 'Roboto', sans-serif;
  background-color: var(--background-color);
  color: var(--text-color);
  margin: 0;
  padding-top: 1px; /* Espaço para o índice fixo */
}

header {
  text-align: center;
  margin-bottom: 40px;
}

header h1 {
  font-size: 2em;
  color: var(--primary-color);
}

header p {
  font-size: 1.2em;
  color: var(--text-color);
}

#tutorial {
  max-width: 900px;
  margin: auto;
  padding: 30px;
  background-color: var(--card-background-color);
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.step {
  margin-bottom: 50px; /* Espaçamento aumentado entre as seções */
  padding: 20px;
  background-color: var(--card-background-color);
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  position: relative;
}

.step img {
  width: 100%; /* Aumenta a largura da imagem para 100% do container */
  max-width: 1000px; /* Define um limite máximo para a largura */
  height: auto;
  border-radius: 8px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1); /* Sombra suavizada */
  margin-top: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  opacity: 1; /* Começa invisível para o efeito de entrada */
  transform: translateY(30px); /* Começa deslocado para baixo */
  transition: opacity 0.6s ease-out, transform 0.6s ease-out; /* Transições suaves */
}

.step.visible img {
  opacity: 1;
  transform: translateY(0);
}

/* Botão de Alternância de Tema */
#theme-toggle {
  position: fixed;
  top: 15px;
  right: 25px;
  background-color: #4caf50; /* Cor verde aplicada ao botão de alternância de tema */
  color: white;
  border-radius: 50%;
  padding: 10px;
  cursor: pointer;
  z-index: 1001;
  transition: background-color 0.3s;
}

#theme-toggle:hover {
  background-color: #388e3c; /* Cor verde mais escura ao passar o mouse */
}

#theme-toggle::after {
  content: "Alternar tema";
  font-size: 0.8em;
  position: absolute;
  top: 35px;
  right: -10px;
  color: var(--text-color);
  opacity: 0;
  transition: opacity 0.3s;
}

#theme-toggle:hover::after {
  opacity: 1;
}

/* Botão de WhatsApp com a imagem personalizada */
#fab-container {
  position: fixed;
  bottom: 30px; /* Ajuste para mais afastamento da borda */
  right: 30px;
  z-index: 1001;
}

#fab-main {
  display: block;
}

#whatsapp-button {
  width: 220px; /* Aumentei levemente o tamanho da imagem */
  height: auto;
  cursor: pointer;
  transition: transform 0.2s, filter 0.2s;
  filter: brightness(90%); /* Deixa a imagem um pouco escura inicialmente */
}

#whatsapp-button:hover {
  transform: scale(1.02); /* Leve aumento de escala ao passar o mouse */
  filter: brightness(100%); /* Remove o escurecimento ao passar o mouse */
}

/* Botão de Retorno ao HelpDesk de T.I */
#back-to-login {
  text-align: center;
  margin: 20px 0;
}

#back-to-login .login-button {
  background-color: #4caf50;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1em;
  transition: background-color 0.3s, transform 0.3s;
}

#back-to-login .login-button:hover {
  background-color: #388e3c;
  transform: scale(1.05);
}

/* Rodapé */
footer {
  background-color: var(--footer-background-color); /* Cor neutra para harmonizar */
  color: var(--footer-text-color);
  text-align: center;
  padding: 5px 0;
  font-size: 0.85em;
  border-top: 1px solid #ddd;
  box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1); /* Sombra suave */
}

footer img {
  max-width: 100px; /* Aumentando o tamanho da logo */
  margin-right: 10px;
  display: inline-block;
  vertical-align: middle;
}

footer p {
  display: inline-block;
  vertical-align: middle;
}

/* Visibilidade com Scroll */
.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Variáveis de Tema */
:root {
  --primary-color: #4caf50;
  --primary-hover-color: #388e3c;
  --background-color: #f0f2f5;
  --text-color: #333;
  --card-background-color: #fff;
  --footer-background-color: #f0f0f0;
  --footer-text-color: #666;
}

body.dark-theme {
  --primary-color: #212121;
  --primary-hover-color: #424242;
  --background-color: #121212;
  --text-color: #e0e0e0;
  --card-background-color: #1e1e1e;
  --footer-background-color: #212121;
  --footer-text-color: #e0e0e0;
}

header h1 {
  font-size: 2em;
  color: var(--primary-color); /* Ajusta a cor para o tema claro */
}

body.dark-theme header h1 {
  color: #ffffff; /* Define a cor branca para o tema escuro */
}

