* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, sans-serif;
  color: black;
  background-color: rgba(181, 201, 181, 0.712);
  image-rendering: auto;
  background-image: url("./assets/logo2.png");
  background-size: auto 100%; /* Ajusta o tamanho da imagem para que ela se ajuste ao fundo */
  background-position: 0 0;
  background-repeat: repeat-x; /* Faz a imagem repetir horizontalmente */
  animation: esteira 10s linear infinite;
}

@keyframes esteira {
  from {
    background-position: 0 0;
  }
  to {
    background-position: -100% 0;
  }
}

@keyframes move-text {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-10%);
  }
}

@keyframes color-change {
  0% {
    color: rgb(226, 73, 12);
  }
  50% {
    color: white;
  }
  100% {
    color: rgb(226, 73, 12);
  }
}

nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  gap: 0.5rem;
  border-bottom: solid 1px #aaa;
  background-color: #eee;
}

nav a {
  display: inline-block;
  min-width: 9rem;
  padding: 0.5rem;
  border-radius: 0.2rem;
  border: solid 1px #aaa;
  text-align: center;
  text-decoration: none;
  color: #555;
}

nav a[aria-current="page"] {
  color: #000;
  background-color: #d4d4d4;
}

main {
  padding: 1rem;
}

h1 {
  text-align: center;
  font-weight: bold;
  font-size: 8.0rem;
  margin-top: -10px;
  animation: move-text 10s linear infinite alternate, color-change 3s linear infinite;
}

h2 {
  text-align: right;
  font-weight: bold;
  font-size: 6.5rem;
  animation: move-text 10s linear infinite alternate, color-change 3s linear infinite;
}

/* Tablets em orientação horizontal */
@media (max-width: 1024px) and (min-width: 768px) {
  h1 {
    font-size: 4.5rem;
  }

  h2 {
    font-size: 5rem;
  }

  nav a {
    min-width: 7rem;
    padding: 0.4rem;
  }

  main {
    padding: 0.8rem;
  }

  body {
    background-size: auto 100%; /* Mantém o tamanho das imagens */
    background-position: 0 0; /* Alinha as imagens do fundo à esquerda */
  }
}

/* Dispositivos móveis grandes (ex. iPhone Plus, celulares grandes) */
@media (max-width: 767px) and (min-width: 500px) {
  h1 {
    font-size: 3rem;
    margin-top: 0;
  }

  h2 {
    font-size: 3.5rem;
    text-align: center;
  }

  nav {
    flex-direction: column;
  }

  nav a {
    min-width: 100%;
    padding: 0.8rem;
  }

  main {
    padding: 0.5rem;
  }

  body {
    background-size: auto 100%; /* Ajuste para imagens de tamanho adequado */
    background-repeat: repeat-x; /* Faz a imagem se repetir na horizontal */
    background-position: 0 0; /* Inicia a posição à esquerda */
  }
}

/* Dispositivos móveis pequenos (ex. iPhone SE, celulares pequenos) */
@media (max-width: 499px) {
  h1 {
    font-size: 2.5rem;
    margin-top: 0;
  }

  h2 {
    font-size: 2.8rem;
    text-align: center;
  }

  nav a {
    min-width: 100%;
    padding: 0.6rem;
  }

  main {
    padding: 0.4rem;
  }

  body {
    background-image: url("./assets/logo2.png");
    background-size: auto 100%; /* Imagem ajustada para o tamanho correto */
    background-repeat: repeat-x; /* A imagem será repetida horizontalmente */
    background-position: 0 0; /* A imagem começa na posição inicial */
    animation: esteira 10s linear infinite; /* Animacao de esteira */
  }
}

footer {
  text-align: center;
  padding: 1rem;
  background-color: rgba(255, 255, 255, 0.8);
  position: relative;
  bottom: 0;
  width: 100%;
  box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
}

.redes-sociais {
  list-style-type: none;
  padding: 0;
  margin: 0 0 1rem 0;
}

.redes-sociais li {
  display: inline;
  margin: 0 1rem;
}

.redes-sociais a {
  text-decoration: none;
  color: #555;
  transition: color 0.3s;
}

.redes-sociais a:hover {
  color: rgb(226, 73, 12);
}

footer p {
  margin: 0;
  color: black;
}

html, body {
  height: 100%;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

footer {
  text-align: center;
  padding: 1rem;
  background-color: rgba(255, 255, 255, 0.8);
  box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
  width: 100%;
}

form {
  display: flex;
  flex-direction: column; /* Organiza os elementos em coluna */
  align-items: center; /* Centraliza o formulário horizontalmente */
  max-width: 400px; /* Define uma largura máxima para o formulário */
  margin: 0 auto; /* Centraliza o formulário na página */
  padding: 1rem;
  background-color: rgba(255, 255, 255, 0.9); /* Fundo leve para o formulário */
  border-radius: 8px; /* Arredonda os cantos */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Sombra leve */
}

form label {
  margin-top: 1rem;
  width: 100%; /* Define a largura dos labels para o alinhamento */
  text-align: left; /* Alinha o texto do label à esquerda */
}

form input,
form select,
form button {
  width: 100%; /* Faz com que as caixas ocupem toda a largura do formulário */
  padding: 0.8rem;
  margin-top: 0.5rem;
  border: 1px solid #aaa;
  border-radius: 4px;
}

form button {
  background-color: rgb(226, 73, 12); /* Cor de fundo do botão */
  color: white;
  font-weight: bold;
  cursor: pointer;
}

form button:hover {
  background-color: rgb(200, 60, 10); /* Efeito ao passar o mouse */
}

.form-link {
  text-align: center;
  margin-top: 1rem;
  margin-bottom: 0;
}

/* Fonte do Título (h1) */
h1 {
  font-size: 3rem; /* Tamanho maior para destaque */
  text-align: center;
  font-weight: bold;
  margin-bottom: 1rem;
  color: rgb(226, 73, 12); /* Cor laranja vibrante */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7); /* Sombra para destacar */
}

h1.sobre-nos {
  font-size: 3rem; /* Tamanho grande para destaque */
  text-align: center; /* Centralizado no topo */
  font-weight: bold; /* Negrito */
  margin: 1rem 0; /* Espaçamento acima e abaixo */
  color: rgb(226, 73, 12); /* Cor laranja vibrante */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7); /* Sombra para destaque */
  position: sticky; /* Fixa o título no topo da tela */
  top: 0; /* Fixa no topo da viewport */
  background-color: rgba(255, 255, 255, 0.8); /* Fundo semitransparente para maior legibilidade */
  padding: 1rem; /* Espaçamento interno */
  z-index: 10; /* Garante que o título fique acima de outros elementos */
}
 
/* Configurações para o contêiner do footer e imagens */
.footer-container {
  display: flex; /* Cria um layout flexível */
  justify-content: space-between; /* Distribui os elementos entre as extremidades */
  align-items: center; /* Alinha os itens verticalmente */
  padding: 10px 20px; /* Espaçamento ao redor */
}

/* Link do lado esquerdo */
#promo-left {
  text-align: left;
}

/* Link do lado direito */
#promo-right {
  text-align: right;
}

/* Estilo para as imagens (opcional, para responsividade) */
#promo-left img,
#promo-right img {
  max-width: 100%; /* Assegura que as imagens não ultrapassem o tamanho permitido */
  height: auto; /* Mantém a proporção da imagem */
}

.login-container {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    max-width: 400px;
    margin: 40px auto;
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.login-container h1, .login-container h2 {
    margin-bottom: 16px;
}
.login-container form label {
    display: block;
    margin-top: 12px;
    margin-bottom: 4px;
}
.login-container form input, .login-container form button {
    width: 100%;
    margin-bottom: 12px;
    padding: 8px;
    box-sizing: border-box;
}
.login-container form button {
    background: #007bff;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}
.login-container form button:hover {
    background: #0056b3;
}

.painel-container {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    max-width: 900px;
    margin: 40px auto;
    padding: 32px 24px;
}

/* Ajuste no link "Sobre Nós" do rodapé */
footer .redes-sociais a[href*="sobrenos.html"] {
    display: none; /* Esconde o link, já que o conteúdo está na home */
}

/* =============================================== */
/* ESTILOS PARA O PAINEL E TABELAS PROFISSIONAIS   */
/* =============================================== */

.painel-container {
    background-color: #ffffff;
    padding: 25px 30px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    border: 1px solid #e0e0e0;
}

.painel-container h2 {
    color: #212529;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 15px;
    margin-top: 0;
    font-size: 1.8em;
    text-align: left;
    animation: none; /* Remove animações do h2 dentro do painel */
}

.painel-container h3 {
    color: #495057;
    margin-top: 40px;
    font-size: 1.3em;
}

.data-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    font-size: 0.95em;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.data-table th, .data-table td {
    padding: 14px 18px;
    border-bottom: 1px solid #dee2e6;
    text-align: left;
    vertical-align: middle;
}

.data-table th {
    background-color: #f8f9fa;
    font-weight: 600;
    color: #495057;
    text-transform: uppercase;
    font-size: 0.85em;
    letter-spacing: 0.5px;
}

.data-table tbody tr:nth-child(even) {
    background-color: #fdfdfd;
}

.data-table tbody tr:hover {
    background-color: #f1f3f5;
}

.data-table tbody tr.clickable-row:hover {
    background-color: #e9ecef; /* Um cinza um pouco mais escuro para indicar interação */
    cursor: pointer;
}

/* Estilos para o status (badge) */
.status {
    padding: 5px 12px;
    border-radius: 15px;
    color: white;
    font-weight: 500;
    text-transform: capitalize;
    font-size: 0.85em;
    display: inline-block;
    min-width: 90px;
    text-align: center;
}

.status-aberto { background-color: #007bff; }
.status-em-andamento { background-color: #ffc107; color: #212529; }
.status-fechado { background-color: #28a745; }

/* Estilos para o select e botão de confirmação do admin */
.status-updater { display: flex; align-items: center; gap: 8px; }
.status-select { flex-grow: 1; padding: 8px; border: 1px solid #ced4da; border-radius: 4px; background-color: white; }
.status-select:focus { border-color: #80bdff; outline: 0; box-shadow: 0 0 0 0.2rem rgba(0,123,255,.25); }
.confirm-status-btn { padding: 8px 12px; background-color: #28a745; color: white; border: none; border-radius: 4px; cursor: pointer; font-weight: bold; }
.confirm-status-btn:hover { background-color: #218838; }
.confirm-status-btn:disabled { background-color: #6c757d; cursor: not-allowed; }

/* Estilos para o lembrete de cupons do admin */
.admin-coupons-reminder {
    background-color: #fffbe6; /* Um amarelo bem claro */
    border: 1px solid #ffe58f; /* Borda amarela */
    border-radius: 6px;
    padding: 15px 20px;
    margin-bottom: 30px;
}

.admin-coupons-reminder h3 {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 1.2em;
    color: #856404; /* Marrom escuro */
}

.admin-coupons-reminder p {
    margin: 5px 0;
    color: #544b3d;
}


/* =============================================== */
/* ESTILOS PARA FORMULÁRIO DE ABERTURA DE CHAMADO  */
/* =============================================== */

#form-title {
    font-size: 1.8em;
    color: #212529;
    text-align: left;
    animation: none;
    text-shadow: none;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.servico-adder {
    display: flex;
    gap: 10px;
    align-items: center;
    width: 100%;
}

.servico-adder select {
    flex-grow: 1;
    margin-top: 0;
}

.servico-adder button {
    margin-top: 0;
    flex-shrink: 0;
    width: auto; /* Impede que o botão ocupe 100% da largura, corrigindo o layout */
    background-color: #007bff;
}

.servico-adder button:hover {
    background-color: #0056b3;
}

#servicos-selecionados-container {
    width: 100%;
    margin-top: 20px;
    padding: 15px;
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 4px;
}

#servicos-selecionados-container h3 {
    margin-top: 0;
    font-size: 1.1em;
    color: #495057;
}

#lista-servicos {
    list-style: none;
    padding: 0;
    margin: 0;
}

#lista-servicos li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #e9ecef;
}

#lista-servicos li:last-child {
    border-bottom: none;
}

/* Garante que o nome do serviço ocupe o espaço disponível, mas não sobreponha a ação */
.servico-nome {
    flex-grow: 1;
    margin-right: 10px; /* Adiciona um espaço para não colar na ação */
}

/* Novo container para alinhar preço e botão */
.servico-acao {
    display: flex;
    align-items: center;
    gap: 10px; /* Espaço entre o valor e o botão */
}

.servico-valor {
    color: #495057;
    font-weight: 500;
}

.remover-servico-btn {
    background: #dc3545;
    color: white;
    border: none;
    padding: 4px 8px;
    font-size: 0.8em;
    border-radius: 100%;
    cursor: pointer;
    line-height: 1;
    width: 20px;
    height: 20px;
}

#total-servicos {
    margin-top: 15px;
    font-size: 1.2em;
    font-weight: bold;
    text-align: right;
    color: #28a745;
}

/* =============================================== */
/* ESTILOS PARA A PÁGINA INICIAL (HOME)            */
/* =============================================== */

/* Caixa de boas-vindas */
.sobre-nos-home {
    font-size: 1.5rem; /* Tamanho de fonte aumentado para melhor legibilidade */
    line-height: 1.6;
    text-align: center;
    color: white;
    background-color: rgba(0, 0, 0, 0.75);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.5);
    max-width: 900px;
    margin: 2rem auto;
}

.sobre-nos-home strong {
    color: rgb(255, 215, 0); /* Amarelo dourado para destaque, mantendo consistência */
    font-size: 1.1em; /* Leve aumento para dar ênfase à marca */
}

/* Seção de serviços */
#servicos {
    font-size: 1.2rem; /* Tamanho de fonte base para a seção */
    line-height: 1.7;
    color: white;
    background-color: rgba(0, 0, 0, 0.75);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.5);
    max-width: 900px;
    margin: 2rem auto;
}

/* Título "Nossos Serviços" - tamanho corrigido e sem animação */
#servicos h2 {
    font-size: 2.5rem; /* Tamanho profissional, não mais gigante */
    text-align: left;
    color: rgb(226, 73, 12);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
    border-bottom: 1px solid #555;
    padding-bottom: 10px;
    margin-top: 0;
    margin-bottom: 1.5rem;
    animation: none; /* Remove a animação global */
}

#servicos p {
    margin-bottom: 1.5rem;
}

#servicos ul.lista-servicos {
    list-style: none;
    padding: 0;
}

#servicos ul.lista-servicos li {
    margin-bottom: 1.5rem;
    font-style: normal;
    text-shadow: none;
}

#servicos ul.lista-servicos li strong {
    display: block;
    font-size: 1.2em; /* Relativo ao 1.2rem do #servicos, resultando em ~1.44rem */
    font-weight: bold;
    color: rgb(255, 215, 0);
    margin-bottom: 5px;
}

#servicos ul.lista-servicos li p {
    margin: 0;
    font-size: 0.9em; /* Relativo ao 1.2rem do #servicos, resultando em ~1.08rem */
    color: #eee;
}

/* =============================================== */
/* ESTILOS PARA PÁGINA DE DETALHES DO CHAMADO      */
/* =============================================== */

.ticket-detalhe-container {
    background-color: #ffffff;
    padding: 25px 30px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    border: 1px solid #e0e0e0;
    max-width: 900px;
    margin: 40px auto;
}

.ticket-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 15px;
    margin-bottom: 25px;
}

.ticket-header h2 {
    color: #212529;
    margin: 0;
    font-size: 1.8em;
    text-align: left;
    animation: none; /* Remove animações globais */
}

.back-link {
    background-color: #6c757d;
    color: white;
    padding: 8px 16px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.2s;
}

.back-link:hover {
    background-color: #5a6268;
}

.ticket-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Ajusta o tamanho da coluna para melhor leitura */
    gap: 0 25px; /* Remove o espaçamento vertical, mantendo o horizontal */
    margin-bottom: 25px;
}

.info-item {
    /* background-color: #f8f9fa; */ /* Remove o fundo para um visual mais limpo */
    padding: 16px 0; /* Adiciona espaçamento vertical */
    /* border-radius: 5px; */
    border-bottom: 1px solid #e9ecef; /* Adiciona uma linha inferior, como em uma tabela */
}

.info-item label {
    display: block;
    font-size: 0.85em;
    font-weight: 600;
    color: #6c757d;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.info-item p {
    margin: 0;
    font-size: 1.1em;
    color: #343a40;
    word-wrap: break-word;
}

.ticket-description {
    border-top: 1px solid #eee;
    padding-top: 25px;
}

.ticket-description .info-item {
    border-bottom: none; /* Remove a borda dos últimos itens para um acabamento limpo */
}

.description-text {
    white-space: pre-wrap; /* Preserva quebras de linha e espaços */
    line-height: 1.6;
}

/* =============================================== */
/* ESTILOS PARA SEÇÃO DE COMENTÁRIOS               */
/* =============================================== */

.ticket-comments-section {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 2px solid #f0f0f0;
}

.ticket-comments-section h3 {
    font-size: 1.5em;
    color: #343a40;
    margin-bottom: 20px;
}

#comments-list {
    margin-bottom: 20px;
    max-height: 400px;
    overflow-y: auto;
    padding-right: 10px;
}

.comment-item {
    background-color: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 15px;
}

.comment-item.admin-comment {
    background-color: #e8f5e9; /* Verde claro para comentários de admin */
    border-color: #d1e7dd;
}

.comment-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    font-size: 0.9em;
    color: #6c757d;
}

.comment-author {
    font-weight: bold;
    color: #495057;
}

.comment-text {
    font-size: 1em;
    line-height: 1.6;
    color: #212529;
    white-space: pre-wrap;
    word-wrap: break-word;
}

#comment-form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ced4da;
    border-radius: 4px;
    min-height: 80px;
    margin-bottom: 10px;
    resize: vertical;
}

#comment-form button {
    display: block;
    margin-left: auto; /* Alinha o botão à direita */
    padding: 10px 20px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
}

#comment-form button:hover {
    background-color: #0056b3;
}

/* =============================================== */
/* AJUSTES RESPONSIVOS PARA O PAINEL E TABELAS     */
/* =============================================== */

@media (max-width: 767px) {
  
  /* Ajusta o padding do container principal no mobile */
  .painel-container {
    padding: 15px 10px;
  }
  
  /* Título do painel com tamanho menor */
  .painel-container h2 {
    font-size: 1.5em; 
  }

  /* --- A MÁGICA PARA A TABELA RESPONSIVA --- */
  
  /* 1. O contêiner da tabela permitirá a rolagem interna */
  .table-wrapper {
    overflow-x: auto; /* Permite rolar a tabela horizontalmente! */
    -webkit-overflow-scrolling: touch; /* Melhora a experiência de rolagem em iOS */
    border: 1px solid #dee2e6;
    border-radius: 4px;
  }
  
  /* 2. A tabela em si ocupa o espaço que precisar */
  .data-table {
    width: 100%;
    min-width: 600px; /* Força uma largura mínima para a tabela, garantindo que a rolagem seja ativada em telas pequenas */
  }

  
  .data-table th, .data-table td {
    padding: 10px 12px;
    font-size: 0.9em; /* Diminui um pouco a fonte */
  }

  
  .status-updater {
    flex-direction: column;
    align-items: flex-start;
  }
}
