/* ========================================== */
/* APLICANDO A FONTE NO PORTAL INTEIRO        */
/* ========================================== */
body, html, h1, h2, h3, h4, h5, h6, p, span, a, div, li, ul, button, input, textarea {
    font-family: 'Daxline Pro', Arial, sans-serif !important;
}
/* ========================================== */
/* IMPORTAÇÃO DA FONTE DAXLINE PRO            */
/* ========================================== */
@font-face {
    font-family: 'Daxline Pro';
    src: url('https://cdn.jsdelivr.net/gh/bentosena-afk/lottoland-fonts@main/DaxlinePro-Regular.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

/* ========================================== */
/* WIDGET DE CATEGORIAS DA HOME (LOTTOLAND)   */
/* ========================================== */

#custom-home-categories {
    display: none; /* Esconde o widget por padrão em TODAS as páginas */
    background-color: #f6f6f8 !important;
    padding: 60px 20px;
    width: 100%;
    float: left;
    position: relative;
    z-index: 10;
    box-sizing: border-box;
    font-family: 'Daxline Pro', Arial, sans-serif; /* Força a fonte no bloco todo */
}

/* O SEGREDO ATUALIZADO: Mostra APENAS na Página Inicial (Home) */
portal.home #custom-home-categories,
portal.homeLanding #custom-home-categories {
    display: block !important; 
}

.CHC-container {
    max-width: 1100px;
    margin: 0 auto;
}

.CHC-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 20px;
}

.CHC-card {
    display: flex;
    align-items: center;
    background: #ffffff;
    padding: 25px 20px;
    border-radius: 6px;
    border: 1px solid #e5e5e5;
    text-decoration: none !important;
    transition: all 0.2s ease-in-out;
    box-shadow: 0 2px 5px rgba(0,0,0,0.02);
}

.CHC-card:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    border-color: #d0d0d0;
    transform: translateY(-2px);
}

.CHC-icon {
    width: 50px;
    height: 50px;
    margin-right: 20px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.CHC-icon img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.CHC-content {
    text-align: left;
}

.CHC-content h4 {
    margin: 0 0 6px 0;
    font-size: 17px;
    color: #111111;
    font-weight: bold;
    font-family: 'Daxline Pro', Arial, sans-serif;
}

.CHC-content p {
    margin: 0;
    font-size: 14px;
    color: #666666;
    font-family: 'Daxline Pro', Arial, sans-serif;
    line-height: 1.3;
  
}
/* ========================================== */
/* AUMENTAR LOGO SEM ALTERAR HEADER           */
/* ========================================== */

.Header__logo img {
    height: 20px !important; /* mantém base original */
    transform: scale(1.3);   /* aumenta visualmente */
    transform-origin: left center;
}

.Header__logo {
    overflow: visible !important;
}
