/* Estilização para a página inicial */
body {
  background-color: #F5F5F5;
  margin: 0;
  overflow: hidden;
}

.pf-c-background-image {
  background: url("../img/background.svg") no-repeat center center fixed;
  background-size: cover;
  height: 100%;

}

.welcome-footer {
  text-align: center;
  margin-top: 3rem;
  padding-top: 1.5rem;
}

.pf-c-login__container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

.kc-brand {
  height: 63px;
  width: auto;
  max-width: 300px;
  display: block;
  margin: 5% auto 2rem auto;
}

/* Os cartões do painel Welcome */
.welcome-cards {
  margin-top: 1.5rem;
}

.welcome-card {
  transition: box-shadow 0.2s ease-in-out, transform 0.2s ease-in-out;
  border-top: 3px solid #003366;
  background-color: #fcfcfc;
}

.welcome-card:hover {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
}

.welcome-header h1 {
  color: #333;
}



/* Container Padrão da Indústria Responsivo (Centrado) */
.container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto !important;
  margin-left: auto !important;
}

@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}

@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}

@media (min-width: 1400px) {
  .container {
    max-width: 1320px;
  }
}



.pf-c-login {
  background-color: #f5f5f5 !important;
}

.pf-c-login__main {
  margin: 0 auto !important;
  background-color: transparent !important;
  box-shadow: none !important;
}

.welcome-header {
  text-align: center;
  margin-bottom: 2rem;
}

.welcome-title {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  color: #333;
  margin-bottom: 0.5rem;
  position: relative;
}

.welcome-title::after {
  content: "";
  display: block;
  width: 30px;
  height: 3px;
  background-color: #008a52;
  margin: 0.5rem auto 0;
}

.welcome-subtitle {
  font-size: 0.8rem;
  color: #777;
  max-width: 650px;
  margin: 1rem auto;
  line-height: 1.4;
}

.welcome-apps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
  margin: 2rem auto;
  max-width: 1300px;
}

@media (min-width: 1200px) {
  .welcome-apps-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

.welcome-app-block {
  display: flex;
  align-items: center;
  background: var(--pf-global--BackgroundColor--100, #fff);
  border: 1px solid transparent;
  border-radius: var(--pf-global--BorderRadius--sm, 2px);
  padding: 10px 15px;
  text-decoration: none;
  color: #333;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s, box-shadow 0.2s;
}

.welcome-app-block:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-decoration: none;
  color: inherit;
  border-color: #eee;
}

.welcome-app-block img {
  width: 36px;
  height: 36px;
  margin-right: 12px;
  flex-shrink: 0;
}

.welcome-app-block span {
  font-size: 11px;
  font-weight: 600;
  text-align: left;
  text-transform: uppercase;
  line-height: 1.25;
}

:root.pf-theme-dark .pf-c-login {
  background-color: #1a1a1a !important;
}

:root.pf-theme-dark .welcome-title {
  color: #eee;
}

:root.pf-theme-dark .welcome-subtitle {
  color: #aaa;
}

:root.pf-theme-dark .welcome-app-block {
  background: var(--pf-global--BackgroundColor--200, #222);
  border-color: var(--pf-global--BorderColor--200, #3c3f42);
  color: #eee;
}

:root.pf-theme-dark .welcome-footer {
  border-color: var(--pf-global--BorderColor--200, #3c3f42);
}