
@import url('https://fonts.googleapis.com/css2?family=MedievalSharp&display=swap');
/* 1. Prepara o fundo da página */
body {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  min-height: 100vh; /* Garante que o body ocupe toda a altura da janela */
  width: 100%;
  font-family: Arial, sans-serif;
  background-color: #0e151a;
}
@import url('https://fonts.googleapis.com/css2?family=MedievalSharp&display=swap');
/* 2. Estiliza o conteúdo principal */
.content {
  flex: 1;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  max-width: 80%;
  min-width: 80%;
  margin: 0 auto;
  box-sizing: border-box;
  font-family: 'MedievalSharp', cursive;
  
}

/* 3. Logo no topo */
.logo {
  flex-shrink: 0;  /* Não deixa a logo encolher */
  order: 0;  /* Garante que vem antes */
  text-align: center;
  width: auto;  /* Deixa com seu tamanho natural */
  padding: 20px 0;
}

.logo img {
  
  max-height: 300px;
}



/* Sidebar Left */
.sidebar-left {
  flex: 0 0 220px;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  background: linear-gradient(180deg, #1a1a1a 0%, #000000 100%); /* Gradiente profundo */
  padding: 20px;
  color: #fff;
  box-sizing: border-box;
  border: 2px solid #705f14;
  border-radius: 5px;
  border-top: 1px solid #705f14;
  border-bottom: 3px solid #705f14;
}

/* Recruitment Status */
.recruitment-status {
  margin: 0;
}

.recruitment-status h2 {
  text-align: center;
  color: #705f14;
  margin: 0 0 20px 0;
  font-size: 18px;
  border-bottom: 2px solid #931537;
  padding-bottom: 10px;
  font-weight: normal;
  
}

/* Recruitment Table */
.recruitment-table {
  width: 100%;
  border-collapse: collapse;
  margin: 0;
  padding: 0;
}

.recruitment-table tbody {
  display: block;
}

.class-row {
  display: flex;
  align-items: center;
  padding: 3px;
  margin: 5px 0;
  border: 1px solid #555;
  border-radius: 5px;
  gap: 8px;
  transition: background-color 0.2s;
  
}

.class-row.open {
  background-color: rgba(23, 165, 28, 0.363);
  border-color: #205a22;
}

.class-row.closed {
  background-color: rgba(244, 67, 54, 0.15);
  border-color: #420101;
  opacity: 0.8;
}

.class-row:hover {
  background-color: rgba(75, 66, 35, 0.2);
}

.class-row td {
  padding: 0;
}

.class-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.class-icon img {
  width: 32px;
  height: 32px;
  display: block;
}

.class-name {
  flex: 1;
  font-weight: bold;
  font-size: 13px;
}

.spec-icons {
  display: flex;
  gap: 4px;
  flex-shrink: 0;
}

.spec-icon {
  width: 24px;
  height: 24px;
  cursor: pointer;
  opacity: 1;
  transition: opacity 0.2s, transform 0.2s;
  display: block;
}

.spec-icon.active {
  filter: brightness(1.2);
}

.spec-icon.inactive {
  opacity: 0.4;
  filter: brightness(0.8);
}

.spec-icon:hover {
  transform: scale(1.15);
}

/* Site Content */
.site-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
  box-sizing: border-box;
  min-width: 78%;
  box-sizing: border-box;
  border: 1px solid #705f14;
  border-radius: 5px;
  border-top: 1px solid #705f14;
  border-bottom: 1px solid #705f14;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  background: linear-gradient(180deg, #1a1a1a 0%, #000000 100%);
  padding: 25px;
  color: #fff;
  
}

/* Recruitment Form */
.recruitment-form {
   /* Gradiente profundo */
  

}

.recruitment-form h1 {
  text-align: center;
  color: #705f14;
  margin: 0 0 20px 0;
  font-size: 28px;
  border-bottom: 2px solid #705f14;
  padding-bottom: 15px;
}

.form-description {
  background-color: rgba(180, 180, 180, 0.3);
  padding: 15px;
  border-radius: 5px;
  margin-bottom: 20px;
  font-size: 14px;
  line-height: 1.6;
}

.form-section {
  margin-bottom: 20px;
}

.form-section h3 {
  color: #705f14;
  margin: 0 0 10px 0;
  font-size: 16px;
  border-bottom: 1px solid #931537;
  padding-bottom: 8px;
}

.form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 10px;
}

.form-group {
  flex: 1;
}

.form-group label {
  display: block;
  color: #705f14;
  font-size: 13px;
  margin-bottom: 5px;
}

.form-group input,
.form-group textarea,
.form-select {
  width: 100%;
  padding: 10px;
  background-color: #333;
  color: #fff;
  border: 1px solid #555;
  border-radius: 4px;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

.form-group input:focus,
.form-group textarea:focus,
.form-select:focus {
  outline: none;
  border-color: #931537;
  background-color: #2a2a2a;
}

.radio-group {
  margin-bottom: 8px;
}

.radio-label {
  display: flex;
  align-items: center;
  color: #fff;
  cursor: pointer;
  font-size: 14px;
}

.radio-label input {
  margin-right: 8px;
  cursor: pointer;
}

.btn-primary,
.btn-secondary {
  padding: 10px 25px;
  border: 2px solid #705f14;
  border-radius: 5px;
  background-color: transparent;
  color: #705f14;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 14px;
}

.btn-primary:hover {
  background-color: #931537;
  color: #1a1a1a;
}

.btn-secondary:hover {
  background-color: #931537;
  color: #1a1a1a;
}


footer {
  text-align: center;
  padding: 1px 0;
  background: linear-gradient(180deg, #1a1a1a 0%, #000000 100%); /* Gradiente profundo */
  color: #fff;
  margin-top: auto;
  width: 80%;
  border-radius: 5px;
  border: 2px solid #705f14;
  border-top: 1px solid #705f14;
  border-bottom: 1px solid #705f14;
  padding-bottom: 10px;
  margin-bottom: 10px;
}




@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@700&display=swap');

.main-menu {
    /* Largura solicitada e centralização */
    width: 78%;
    margin: 20px auto;
    
    /* Cores base do WoW: Cinza-azulado muito escuro */
    background-color: #0b0d0f;
    background-image: linear-gradient(180deg, #15191c 0%, #080a0c 100%);
    
    /* A moldura clássica de bronze/ouro envelhecido */
    border: 2px solid #5a4628;
    outline: 1px solid #1a1a1a; /* Linha preta externa para destaque */
    outline-offset: 2px;
    
    box-shadow: 0 10px 20px rgba(0,0,0,0.8);
    height: 46px;
    display: flex;
    justify-content: center;
    border-radius: 0; /* Menus de WoW raramente são redondos */
    position: relative;
}

/* Ornamentos de canto estilo interface de RPG */
.main-menu::before, 
.main-menu::after {
    content: "";
    position: absolute;
    width: 8px;
    height: 8px;
    background: #8a6a33;
    border: 1px solid #1a1a1a;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}
.main-menu::before { left: -5px; }
.main-menu::after { right: -5px; }

.main-menu ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
    width: 100%;
    justify-content: space-around;
}

.main-menu ul li {
    display: flex;
    align-items: center;
    flex: 1;
}

.main-menu ul li a {
    text-decoration: none;
    color: #705f14; /* O lendário amarelo/ouro das quests do WoW */
    font-family: 'Cinzel', serif;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    text-shadow: 2px 2px 2px #000;
}

/* Hover: Efeito de seleção de item épico */
.main-menu ul li a:hover {
    color: #ffffff;
    background: linear-gradient(180deg, rgba(90, 70, 40, 0.4) 0%, transparent 100%);
    text-shadow: 0 0 10px #ffd100;
}

/* Divisor vertical sutil entre os botões */
.main-menu ul li:not(:last-child) {
    border-right: 1px solid #5a4628;
}

/* Item Ativo */
.main-menu ul li a.active {
    color: #fff;
    background-color: rgba(255, 255, 255, 0.05);
    box-shadow: inset 0 0 10px #000;
}

/* Estilo quando o item estiver ativo (Página Atual) */
.main-menu ul li a.active {
    color: #ffffff !important;
    background: linear-gradient(180deg, rgba(138, 106, 51, 0.4) 0%, rgba(0, 0, 0, 0.6) 100%);
    box-shadow: inset 0 0 8px #000;
    border-bottom: 2px solid #8a6a33; /* Uma linha dourada fina embaixo para destacar */
}

input[type="text"], textarea, select {
    background-color: #0d0d0d;
    border: 1px solid #5a4628; /* Bronze clássico do banner */
    color: #ffd100;
    font-family: 'Cinzel', serif;
    padding: 8px;
}

input:focus {
    border-color: #ffd100;
    outline: none;
    box-shadow: 0 0 5px rgba(255, 209, 0, 0.5);
}