/* ==================================== */
/* 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;
  gap: 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);
}


/* ========================= */
/*        MEDIA QUERY        */
/* ========================= */

@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    align-items: flex-start;
    padding: 3%;
  }

  .logo-area {
    margin-bottom: 10px;
  }

  .nav-links {
    flex-direction: column;
    padding: 0;
    width: 100%;
  }

  div.nav-links div {
    margin: 10px 0;
  }

  div.nav-links div:last-child {
    margin-right: 0;
  }

  div.nav-links div a {
    display: block;
    width: 100%;
    padding: 10px;
  }
}




/* HERO SECTION COM IMAGEM DE FUNDO (ALTURA REDUZIDA) */

.hero {
  position: relative;
  text-align: center;
  padding: 4rem 2rem;
  color: var(--white);
  background: url("/static/img/hero-wallpaper.jpg");
  background-size: cover;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5); /* overlay escuro */
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
}

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

.subtitulo {
  font-size: 1.3rem;
  font-weight: 300;
  margin-bottom: 1.2rem;
}

.descricao {
  font-size: 1.05rem;
  line-height: 1.7;
}


/* ==================================== */
/* 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.2rem;
  background-color: var(--blue-dark);
  color: var(--white);
}

/* ==================================== */
/* SEÇÃO DE CARDS DO SCRUM              */

.scrum-cards {
  background-color: #f9fafb;
  padding: 3rem 2rem;
  text-align: center;
}

.section-title {
  font-size: 2rem;
  margin-bottom: 3rem;
  color: var(--blue-dark);
}

.card-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.card {
  background: var(--white);
  border-radius: 0.8rem;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.08);
  max-width: 300px;
  padding: 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.card-icon {
  width: 60px;
  margin-bottom: 1rem;
}

.card h3 {
  color: var(--blue-dark);
  margin-bottom: 0.8rem;
}

.card p {
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ==================================== */


