/* ==========================================================================
   Mixologia — Hila Vidros e Cristais — mixologia.css
   ========================================================================== */

.mix-root {
    font-family: 'Montserrat', sans-serif;
}

.mix-root * {
    box-sizing: border-box;
}

.mix-root a {
    text-decoration: none;
    color: inherit;
}

.mix-search-cats {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.mix-search-wrap {
    position: relative;
    max-width: 480px;
    margin: 0 auto 1.5rem;
}

.mix-search-wrap input {
    width: 100%;
    box-sizing: border-box;
    padding: 0.75rem 2.75rem 0.75rem 2.75rem;
    border-radius: 999px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    font-size: 0.95rem;
    font-family: inherit;
    outline: none;
    transition: border-color .15s ease, box-shadow .15s ease;
}

.mix-search-wrap input:focus {
    border-color: rgba(0, 0, 0, 0.3);
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.05);
}

.mix-search-wrap input::-webkit-search-cancel-button {
    -webkit-appearance: none;
    appearance: none;
}

.mix-search-wrap .ti {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.1rem;
    opacity: 0.5;
    pointer-events: none;
}

.mix-search-empty {
    display: none;
}

.mix-search-clear {
    position: absolute;
    right: 0.5rem;
    top: 50%;
    transform: translateY(-50%);
    width: 28px;
    height: 28px;
    border: none;
    background: rgba(0, 0, 0, 0.06);
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    opacity: 0.6;
    transition: opacity .15s ease, background .15s ease;
    padding: 0;
}

.mix-search-clear:hover {
    opacity: 1;
    background: rgba(0, 0, 0, 0.12);
}

.mix-search-clear.visible {
    display: flex;
}

.mix-search-count {
    text-align: center;
    font-size: 0.85rem;
    opacity: 0.6;
    margin-bottom: 1rem;
    min-height: 1.2em;
}


/* —— HERO —— */
.mix-hero {
    background: #00427a;
    padding: 52px 32px 48px;
    text-align: center;
}

.mix-hero h1 {
    color: #ffffff;
    font-size: 40px;
    font-weight: 700;
    margin: 0 0 12px;
    line-height: 1.15;
}

.mix-hero h1 span {
    color: #bcd4ea;
}

.mix-hero p {
    color: #d3e3f0;
    font-size: 15px;
    max-width: 420px;
    margin: 0 auto;
    line-height: 1.65;
}

/* —— BADGE —— */
.mix-badge {
    display: inline-block;
    padding: 2px 9px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .05em;
    color: #00427a;
    background: rgba(0, 66, 122, .1);
    border: 1px solid rgba(0, 66, 122, .2);
    margin-bottom: 8px;
}

/* —— LINK "ler receita" —— */
.mix-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: #00427a;
    font-size: 12px;
    font-weight: 600;
    opacity: .7;
    transition: opacity .15s;
}

a:hover .mix-link {
    opacity: 1;
}

/* ============================================================
   DESTAQUES DA SEMANA
   Layout: 1 card grande à esquerda + 2 cards empilhados à direita
   ============================================================ */
.mix-destaques {
    background: #f7f9fb;
    padding: 32px 28px 36px;
}

.mix-destaques-titulo {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 22px;
}

.mix-destaques-titulo h2 {
    font-size: 18px;
    font-weight: 700;
    color: #00427a;
    white-space: nowrap;
    margin: 0;
}

.mix-rule {
    flex: 1;
    height: 1px;
    background: #dde7f0;
}

.mix-updates {
    font-size: 11px;
    color: #8294a8;
    white-space: nowrap;
}

/* grid 1 grande + coluna de 2 pequenos */
.mix-destaques-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    align-items: stretch;
}

/* card grande (esquerda) */
.mix-destaque-lg {
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border: 1px solid #dde7f0;
    border-radius: 12px;
    overflow: hidden;
    transition: transform .15s, box-shadow .18s;
}

.mix-destaque-lg:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(0, 66, 122, .08);
}

.mix-destaque-lg .mix-destaque-img {
    width: 100%;
    height: 200px;
    background-size: cover;
    background-position: center;
    background-color: #e8f0f8;
}

.mix-destaque-lg .mix-destaque-body {
    padding: 18px 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.mix-destaque-lg h3 {
    font-size: 18px;
    font-weight: 700;
    color: #00427a;
    margin: 0 0 8px;
    line-height: 1.25;
}

.mix-destaque-lg p {
    font-size: 13px;
    color: #5a6e82;
    line-height: 1.6;
    flex: 1;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* coluna direita com 2 cards empilhados */
.mix-destaques-sm {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.mix-destaque-sm {
    flex: 1;
    display: flex;
    background: #ffffff;
    border: 1px solid #dde7f0;
    border-radius: 12px;
    overflow: hidden;
    transition: transform .15s, box-shadow .18s;
}

.mix-destaque-sm:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(0, 66, 122, .07);
}

.mix-destaque-sm-img {
    width: 90px;
    flex-shrink: 0;
    background-size: cover;
    background-position: center;
    background-color: #e8f0f8;
}

.mix-destaque-sm-body {
    padding: 14px 16px;
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.mix-destaque-sm h4 {
    font-size: 14px;
    font-weight: 700;
    color: #00427a;
    margin: 0 0 6px;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.mix-destaque-sm p {
    font-size: 12px;
    color: #5a6e82;
    line-height: 1.5;
    flex: 1;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* rodapé do card (data + link) */
.mix-destaque-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid #dde7f0;
}

.mix-destaque-foot>span:first-child {
    font-size: 11px;
    color: #8294a8;
}

/* ============================================================
   CATEGORIAS + LISTAGEM
   ============================================================ */
.mix-listing {
    padding: 28px 28px 48px;
    background: #ffffff;
}

.mix-cat-tabs {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 18px;
    border-bottom: 1px solid #dde7f0;
    margin-bottom: 24px;
    scrollbar-width: none;
}

.mix-cat-tabs::-webkit-scrollbar {
    display: none;
}

.mix-cat-btn {
    padding: 7px 16px;
    border-radius: 999px;
    border: 1px solid #dde7f0;
    background: transparent;
    color: #5a6e82;
    font-size: 12px;
    font-weight: 400;
    white-space: nowrap;
    font-family: 'Montserrat', sans-serif;
    cursor: pointer;
    transition: all .18s;
    text-decoration: none;
}

.mix-cat-btn:hover {
    opacity: .8;
}

.mix-cat-btn.active {
    border-color: #00427a;
    background: rgba(0, 66, 122, .09);
    color: #00427a;
    font-weight: 600;
}

.mix-empty {
    text-align: center;
    padding: 56px 0;
    color: #8294a8;
}

.mix-empty i {
    font-size: 44px;
    display: block;
    margin-bottom: 12px;
    color: #dde7f0;
}

.mix-empty p {
    font-size: 14px;
    margin: 0;
}

.mix-post-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.mix-post {
    display: flex;
    background: #f7f9fb;
    border: 1px solid #dde7f0;
    border-radius: 12px;
    overflow: hidden;
    transition: transform .15s, box-shadow .18s, border-color .18s;
}

.mix-post:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(0, 66, 122, .07);
    border-color: #b0c8e0;
}

.mix-post-img {
    width: 120px;
    flex-shrink: 0;
    background-size: cover;
    background-position: center;
    background-color: #e8f0f8;
}

.mix-post-body {
    padding: 14px 18px;
    flex: 1;
    overflow: hidden;
}

.mix-post-top {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 7px;
}

.mix-post-date {
    font-size: 11px;
    color: #8294a8;
}

.mix-post-body h3 {
    font-size: 15px;
    font-weight: 700;
    color: #00427a;
    margin: 0 0 5px;
    line-height: 1.3;
}

.mix-post-body p {
    font-size: 12px;
    color: #5a6e82;
    line-height: 1.55;
    margin: 0 0 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.mix-post-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mix-post-foot>span:first-child {
    font-size: 11px;
    color: #8294a8;
}

/* ============================================================
   PÁGINA INDIVIDUAL DA RECEITA
   ============================================================ */
.mix-receita-page {
    font-family: 'Montserrat', sans-serif;
}

.mix-voltar {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #5a6e82;
    font-size: 13px;
    padding: 20px 28px 0;
    font-family: 'Montserrat', sans-serif;
}

/* hero */
.mix-receita-hero {
    background: #00427a;
    padding: 0 28px 0;
}

.mix-receita-hero-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 48px;
    align-items: center;
    padding: 48px 0 0;
}

.mix-receita-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: #bcd4ea;
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 4px;
    padding: 3px 10px;
    margin-bottom: 14px;
}

.mix-receita-hero-texto h1 {
    color: #ffffff;
    font-size: 36px;
    font-weight: 800;
    line-height: 1.15;
    margin: 0 0 14px;
}

.mix-receita-intro {
    color: rgba(255, 255, 255, .82);
    font-size: 15px;
    line-height: 1.7;
    margin: 0 0 10px;
}

.mix-receita-meta {
    color: #bcd4ea;
    font-size: 12px;
    margin: 0;
}

.mix-receita-hero-img {
    border-radius: 16px 16px 0 0;
    overflow: hidden;
    background: rgba(255, 255, 255, .08);
}

.mix-receita-hero-img img {
    width: 100%;
    display: block;
}

/* quick facts */
.mix-receita-facts {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 0;
    background: rgba(255, 255, 255, .1);
    border-top: 1px solid rgba(255, 255, 255, .12);
    margin-top: 32px;
}

.mix-fact-item {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 20px;
    border-right: 1px solid rgba(255, 255, 255, .1);
}

.mix-fact-item:last-child {
    border-right: none;
}

.mix-fact-item i {
    font-size: 20px;
    color: #bcd4ea;
}

.mix-fact-label {
    display: block;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: #bcd4ea;
    margin-bottom: 2px;
}

.mix-fact-valor {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: #ffffff;
}

/* conteúdo: ingredientes + passos */
.mix-receita-conteudo {
    max-width: 1100px;
    margin: 0 auto;
    padding: 48px 28px;
}

.mix-receita-grid {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 28px;
}

.mix-card-receita {
    background: #f7f9fb;
    border: 1px solid #dde7f0;
    border-radius: 14px;
    padding: 28px;
}

.mix-card-receita h2 {
    font-size: 17px;
    font-weight: 700;
    color: #00427a;
    margin: 0 0 18px;
    padding-bottom: 14px;
    border-bottom: 2px solid #00427a;
}

.mix-ing-lista {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mix-ing-lista li {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 10px 0;
    border-bottom: 1px solid #dde7f0;
    font-size: 13px;
}

.mix-ing-nome {
    color: #1c2b3a;
    font-weight: 500;
}

.mix-ing-qtd {
    color: #00427a;
    font-weight: 700;
}

.mix-dica {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    margin-top: 20px;
    padding: 14px;
    background: rgba(0, 66, 122, .05);
    border-radius: 8px;
    border-left: 3px solid #00427a;
}

.mix-dica i {
    font-size: 16px;
    color: #00427a;
    margin-top: 2px;
    flex-shrink: 0;
}

.mix-dica p {
    font-size: 13px;
    color: #33485c;
    line-height: 1.6;
    margin: 0;
}

.mix-passos {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.mix-passos li {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.mix-passo-num {
    width: 30px;
    height: 30px;
    flex-shrink: 0;
    border-radius: 50%;
    background: #00427a;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
}

.mix-passos strong {
    display: block;
    font-size: 14px;
    color: #1c2b3a;
    margin-bottom: 4px;
}

.mix-passos p {
    font-size: 13px;
    color: #5a6e82;
    line-height: 1.6;
    margin: 0;
}

/* harmonização */
.mix-harmonizacao {
    background: #f7f9fb;
    padding: 48px 28px;
}

.mix-harmonizacao-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.mix-harmonizacao h2 {
    font-size: 24px;
    font-weight: 800;
    color: #00427a;
    margin: 0 0 8px;
}

.mix-harmonizacao>.mix-harmonizacao-inner>p {
    font-size: 15px;
    color: #5a6e82;
    margin: 0 0 28px;
    line-height: 1.65;
}

.mix-pairings-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.mix-pairing-card {
    background: #ffffff;
    border: 1px solid #dde7f0;
    border-radius: 14px;
    padding: 24px;
}

.mix-pairing-card i {
    font-size: 24px;
    color: #00427a;
    display: block;
    margin-bottom: 14px;
}

.mix-pairing-card h3 {
    font-size: 16px;
    font-weight: 700;
    color: #1c2b3a;
    margin: 0 0 8px;
}

.mix-pairing-card p {
    font-size: 13px;
    color: #5a6e82;
    line-height: 1.55;
    margin: 0;
}

/* copo recomendado */
.mix-copo-recomendado {
    padding: 40px 28px 56px;
}

.mix-copo-inner {
    max-width: 1100px;
    margin: 0 auto;
    background: #00427a;
    border-radius: 16px;
    padding: 32px 36px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.mix-copo-eyebrow {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: #bcd4ea;
    margin: 0 0 8px;
}

.mix-copo-inner h2 {
    font-size: 22px;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 8px;
}

.mix-copo-inner>div>p {
    font-size: 14px;
    color: rgba(255, 255, 255, .8);
    margin: 0;
    line-height: 1.6;
}

.mix-copo-specs {
    display: flex;
    gap: 16px;
    margin-top: 12px;
    font-size: 12px;
    font-weight: 600;
    color: #bcd4ea;
}

.mix-copo-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #ffffff;
    color: #00427a;
    padding: 13px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    white-space: nowrap;
    flex-shrink: 0;
}

/* ============================================================
   RESPONSIVO
   ============================================================ */
@media (max-width: 860px) {
    .mix-destaques-grid {
        grid-template-columns: 1fr;
    }

    .mix-destaques-sm {
        flex-direction: row;
    }

    .mix-destaque-sm {
        flex: 1;
        flex-direction: column;
    }

    .mix-destaque-sm-img {
        width: 100%;
        height: 120px;
    }

    .mix-receita-hero-inner {
        grid-template-columns: 1fr;
    }

    .mix-receita-hero-img {
        display: none;
    }

    .mix-receita-grid {
        grid-template-columns: 1fr;
    }

    .mix-pairings-grid {
        grid-template-columns: 1fr;
    }

    .mix-receita-facts {
        flex-wrap: wrap;
    }

    .mix-fact-item {
        min-width: 50%;
        border-bottom: 1px solid rgba(255, 255, 255, .1);
    }
}

@media (max-width: 560px) {
    .mix-hero h1 {
        font-size: 28px;
    }

    .mix-post-img {
        width: 80px;
    }

    .mix-destaques-sm {
        flex-direction: column;
    }
}