/* ==================================== */
/* VARIÁVEIS E ESTILOS GLOBAIS          */

:root {
  --blue-dark: #1e3a8a;
  --blue-light: #3b82f6;
  --white: #ffffff;
  --text-dark: #1f2937;
  --font-family: "Poppins", sans-serif;
}

body {
  font-family: var(--font-family);
  background: linear-gradient(to right, var(--blue-dark), var(--blue-light));
  color: var(--text-dark);
  line-height: 1.6;
}

/* ==================================== */
/*----NAVBAR----*/

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: var(--blue-dark);
  padding:1%;
}

.logo-area {
  display: flex;
  align-items: center;
  margin-left: 10px;
}

.logo-img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.logo-text {
  color: var(--white);
  font-weight: bold;
  text-decoration: none;
  font-size: 1.2rem;
}

.nav-links {
  list-style: none;
  display: flex;
  padding: 10px 10px;
}
div.nav-links div{
  margin-right:50px;
}
div.nav-links div:last-child{
  margin-right:10px;
}
div.nav-links div a{
  color: var(--white);
  text-decoration: none;
  padding: 8px;
  border-radius: 0.3rem;
  transition: background-color 0.3s ease;
}


div.nav-links div a:hover {
  background-color: var(--blue-light);
}

/* ==================================== */
/* HERO SECTION                         */
/* ==================================== */

.hero {
  text-align: center;
  padding: 5rem 2rem;
  background: linear-gradient(to right, var(--blue-dark), var(--blue-light));
  color: var(--white);
}

.hero-content {
  max-width: 900px;
  margin: 0 auto;
}

.hero h1 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
}

.subtitulo {
  font-size: 1.4rem;
  font-weight: 300;
  margin-bottom: 1.5rem;
}

.descricao {
  font-size: 1.1rem;
  line-height: 1.8;
}

/* ==================================== */
/* BOTÕES DE ACESSO (na home)           */
.cta-section {
  text-align: center;
  padding: 3rem 2rem;
  color: var(--white);
}

.cta-section h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap; 
}

.btn {
  display: inline-block;
  padding: 1rem 2rem;
  text-decoration: none;
  border-radius: 0.4rem;
  font-size: 1.1rem;
  font-weight: bold;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s ease;
}

.btn-employee {
  background-color: var(--white);
  color: var(--blue-dark);
}

.btn-employee:hover {
  background-color: #f0f4f8;
}

.btn-admin {
  background-color: var(--blue-dark);
  color: var(--white);
}

.btn-admin:hover {
  background-color: var(--blue-light);
}

/* ==================================== */
/*----OUTRAS SEÇÕES----*/

.content {
  padding: 2rem;
  max-width: 800px;
  margin: auto;
}

.status-card {
  background: var(--white);
  border-radius: 0.8rem;
  padding: 1.5rem;
  margin-top: 1.5rem;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: left;
}

/* ==================================== */
/*-----RODAPÉ-----*/
#footer {
  text-align: center;
  padding: 0.5rem;
  background-color: var(--blue-dark);
  color: var(--white);
  margin-top: 10%;
}
/* ==================================== */
