/* O container que vai segurar todos os cards */
.guide-card-container {
    --card-min: 120px;
    --card-max: 1fr;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(var(--card-min), var(--card-max)));
    gap: 16px;
    padding: 20px 0;
    align-items: stretch;
}

/* O estilo de cada card individual */
.guide-card {
    position: relative;
    background: linear-gradient(180deg, #3e3527, #4d4231);
    border: 1px solid #f5b942;
    border-radius: 10px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
    text-decoration: none;
    color: #f5b942 !important;
    font-weight: 700;
    font-size: 13px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
    padding: 10px 8px;
    min-height: 120px;
}

/* Efeito ao passar o mouse por cima do card */
.guide-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.35);
    border-color: #ffd36a;
}

/* Estilo da imagem dentro do card */
.guide-card img {
    width: 56px;
    height: 56px;
    object-fit: contain;
    margin-bottom: 10px;
    filter: drop-shadow(0 2px 2px rgba(0,0,0,.35));
}

/* Estilo do texto dentro do card */
.guide-card-title { display: block; line-height: 1.1; }

/* Estilo para o ícone de 'HOT' se você quiser usar */
.guide-card .hot-icon {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 25px; /* Tamanho ajustado */
    height: auto;
}

/* Toolbar */
.guide-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 10px 0 6px;
}
.guide-toolbar-left,
.guide-toolbar-right { display: flex; align-items: center; gap: 8px; }

.search-input {
    flex: 1 1 300px;
    max-width: 420px;
    padding: 10px 12px;
    background: #1e1a13;
    color: #fff;
    border: 1px solid #5f523e;
    border-radius: 8px;
    outline: none;
}
.search-input::placeholder { color: #b6a380; }

.ui-btn {
    appearance: none;
    border: 1px solid #f5b942;
    background: #2e271c;
    color: #f5c66d;
    font-weight: 700;
    border-radius: 8px;
    padding: 8px 12px;
    cursor: pointer;
    transition: transform .15s ease, background .15s ease, border-color .15s ease;
}
.ui-btn:hover { transform: translateY(-1px); background: #3b3224; border-color: #ffd36a; }
.ui-btn:active { transform: translateY(0); }

.NavigationBarLinkList {
    list-style: none;             /* Remove default list styling */
    padding: 0;                  /* Remove default padding */
    margin: 0;                   /* Remove default margin */
}

.NavigationBarLinkList nobr {  /* This ensures links stay on one line */
    display: inline-block;      /* Allow styling links as blocks within nobr */
    margin: 5px;                /* Add some space between links */
}

.NavigationBarLinkList a {     /* Style the links as small buttons */
    width: 185px;/*var(--button-width);*/ /* Use CSS variable */

    display: inline-block;      /* Make links into blocks for button-like styling */
    padding: 5px 10px;          /* Adjust padding for smaller size */
    background-color: #007bff;  /* Example background color */
    color: #fff;                /* Example text color */
    text-decoration: none;
    border-radius: 3px;         /* Slightly rounded corners */
    font-size: 14px;            /* Adjust font size as needed */
}

.NavigationBarLinkList a:hover {
    background-color: #0056b3;
    color: aqua;
    text-decoration: none;
}

.NavigationBarLinkList a.active {
  background-color: #facc5b;
  color: #ff6000;
}
.NavigationBarLinkList a.active:hover {
  background-color: #ffb500;
  color: #df5b19;
}

.guideTitle  {
    margin: auto;
    font-family: martel;
    font-size: 26px;
}

.White {
    background-color: #fff !important;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.section {
    display: none; /* Esconde todas as seções inicialmente */
    padding-top: 20px;
    border-top: 1px solid #ddd; /* Linha separadora sutil */
}

.section.active {
    display: block;
}
.NavigationBarContainer {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 5px;
}