/* ===========================
   BASE DO SITE
=========================== */

body {
    background-color: #faf7f2;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* LOGO */
.brand-name {
    font-size: 1.6rem;
    font-weight: 700;
    color: #ff6b35;
}

/* ===========================
   MENU SUPERIOR LARANJA
=========================== */

.menu-topo {
    background-color: #ff6b35;
    padding: 10px 0;
}

/* REMOVE O FLEX DO BOOTSTRAP */
.menu-topo .container {
    display: block !important;
}

/* CADA ITEM DO MENU */
.menu-topo a {
    display: inline-block !important; /* vira bloco independente */
    vertical-align: top;

    max-width: 120px;      /* força quebra em 2 linhas */
    padding: 6px 10px;

    color: #fff !important;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none !important;

    white-space: normal !important; /* permite quebrar linha */
    word-break: break-word;         /* quebra se necessário */

    text-align: center;    /* centraliza as 2 linhas */
    line-height: 1.1;

    margin: 5px 15px 5px 0 !important;
}

.menu-topo a:hover {
    opacity: 0.85;
}

/* ===========================
   EXPLORE POR CATEGORIA
=========================== */

.explore-container {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 10px;
    padding-bottom: 5px;
}

.explore-container::-webkit-scrollbar {
    height: 6px;
}

.explore-container::-webkit-scrollbar-thumb {
    background: rgba(0,0,0,0.2);
    border-radius: 10px;
}

/* BOTÕES DE CATEGORIA */
.category-pill {
    padding: 6px 14px;
    border: 2px solid #ff6b35;
    color: #ff6b35;
    border-radius: 20px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none !important;
    white-space: nowrap;
    display: inline-block;
    transition: 0.2s;
}

.category-pill:hover {
    background-color: #ff6b35;
    color: white;
}

/* ===========================
   AJUSTES MOBILE
=========================== */

@media (max-width: 576px) {

    .menu-topo a {
        font-size: 0.78rem;
        padding: 4px 8px;
        max-width: 90px;
    }

    .menu-topo {
        padding: 8px 0;
    }

    .category-pill {
        font-size: 0.78rem;
        padding: 5px 10px;
    }
}

/* ===========================
   AJUSTES TABLET
=========================== */

@media (max-width: 768px) {

    .menu-topo a {
        font-size: 0.82rem;
        max-width: 110px;
    }
}

.breadcrumb-nav {
    background: #fff;
    border-bottom: 1px solid #eee;
    padding: 12px 0;
    margin-bottom: 20px;
}

.breadcrumb-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 15px;
}

.breadcrumb-list li {
    display: flex;
    align-items: center;
}

.breadcrumb-list a {
    color: #ff6b35;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
}

.breadcrumb-list a:hover {
    text-decoration: underline;
}

.separator {
    margin: 0 6px;
    color: #999;
}

.breadcrumb-list i {
    margin-right: 4px;
    color: #ff6b35;
}
