/* Reset e Base */
html { scroll-behavior: smooth; }
body { font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; background-color: #f4f6f8; color: #333; margin: 0; padding: 0; line-height: 1.6; }

/* Layout */
.container { max-width: 900px; margin: 0 auto; padding: 40px 20px; background: white; box-shadow: 0 2px 10px rgba(0,0,0,0.05); min-height: 100vh; }

/* Cabeçalho */
header { border-bottom: 2px solid #003366; padding-bottom: 20px; margin-bottom: 20px; }
header p {
    text-align: center;
    margin-top: 0;
}
h1 { color: #003366; font-size: 28px; letter-spacing: 1px; text-transform: uppercase; margin: 0; }

/* Classe para a Imagem da Logo */
.logo-golisters {
    max-width: 100%;     /* Garante que não estoure em telas pequenas */
    width: 350px;        /* Tamanho sugerido - ajuste conforme necessário */
    height: auto;        /* Mantém a proporção */
    display: block;      /* Comportamento de bloco */
    margin: 0 auto;      /* Centralização extra */
}

/* Tipografia e Elementos Gerais */
h2 { color: #444; font-size: 22px; margin-top: 0; border-left: 5px solid #003366; padding-left: 15px; }
h3 { color: #003366; font-size: 18px; margin-bottom: 10px; }
p { color: #666; font-size: 16px; margin-bottom: 15px; }
ul { list-style-type: square; color: #555; padding-left: 20px; }
li { margin-bottom: 10px; }

/* Componentes */
.highlight-box { background: #f0f4f8; padding: 20px; border-left: 4px solid #003366; margin: 30px 0; border-radius: 0 4px 4px 0; }
.contact-btn { display: inline-block; background-color: #003366; color: white; padding: 10px 20px; text-decoration: none; border-radius: 4px; margin-top: 20px; transition: background 0.3s; }
.contact-btn:hover { background-color: #002244; }

/* ESTILO DO BOTÃO DE CANCELAMENTO (NOVO) */
.btn-finance {
  display: inline-block; /* Garante que o botão ocupe apenas o espaço necessário */
  background-color: #d9534f; /* Cor vermelha para urgência/cancelamento */
  color: white;
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 5px;
  font-family: Arial, sans-serif;
  font-weight: bold;
  margin-top: 20px; /* Espaço acima do botão */
  margin-bottom: 40px; /* Espaço abaixo do botão */
  transition: background 0.3s;
}
.btn-finance:hover {
  background-color: #c9302c;
}
/* FIM DO ESTILO NOVO */

/* Navegação */
nav { text-align: center; margin-bottom: 40px; padding: 10px 0; background-color: #f9f9f9; border-radius: 4px; }
nav a { margin: 0 15px; color: #003366; text-decoration: none; font-weight: 600; font-size: 15px; display: inline-block; }
nav a:hover { text-decoration: underline; color: #0055aa; }

/* Seções */
section { margin-bottom: 60px; padding-bottom: 40px; border-bottom: 1px solid #eee; }
section:last-of-type { border-bottom: none; }

/* Estilos Específicos para Vagas */
.job-item { margin-bottom: 25px; padding-bottom: 15px; border-bottom: 1px dashed #ddd; }
.job-item:last-child { border-bottom: none; }
.job-title { color: #003366; font-weight: bold; display: block; margin-bottom: 5px; font-size: 1.1em; }

/* Estilos Específicos para Privacidade */
.policy-item { margin-bottom: 20px; }
.policy-title { font-weight: bold; color: #333; display: block; margin-bottom: 5px; }

/* Rodapé */
footer { margin-top: 20px; padding-top: 20px; border-top: 2px solid #003366; font-size: 14px; color: #888; text-align: center; }
footer a { text-decoration: none; transition: color 0.2s; }
footer a:hover { color: #003366; }

