/* =========================================
   1. RESET E GLOBAIS
   ========================================= */
/* http://meyerweb.com/eric/tools/css/reset/ v2.0 */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video { margin: 0; padding: 0; border: 0; font-size: 100%; font: inherit; vertical-align: baseline; }
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section { display: block; }
body { line-height: 1; min-height: 100%; overflow-x: hidden; overflow-y: scroll; text-rendering: optimizeLegibility; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; color: #000; background-color: #fff; font-family: 'Lato', sans-serif; }
ol, ul { list-style: none; }
blockquote, q { quotes: none; }
table { border-collapse: collapse; border-spacing: 0; }
* { -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; }
a { text-decoration: none; color: inherit; transition: 0.3s; }
img { max-width: 100%; height: auto; display: block; }
button { cursor: pointer; font-family: inherit; }

@import url("https://fonts.googleapis.com/css?family=Roboto:300,400,600,700");
@import url("https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700");
@import url('https://fonts.googleapis.com/css2?family=Inter+Tight:ital,wght@0,100..900;1,100..900&display=swap');
:root {
    --color-primary: #D70A5A;
    --color-text: #333333;
    --color-gray-light: #f5f5f5;
    --color-border: #e0e0e0;
}

.container {
    width: 100%;
    max-width: 1512px;
    margin: 0 auto;
    padding: 0 40px;
    box-sizing: border-box;
}

/* =========================================
   2. NOVO LAYOUT DO BLOG (Redesign)
   ========================================= */

/* --- Hero Section --- */
.blog-hero {
    background-color: #E2E2E4;
    background-image: url('https://blog.adcos.com.br/wp-content/uploads/2025/12/background-home-desk.png'); 
    background-size: cover;
    background-position: center center;
    padding: 80px 0;
    margin-bottom: 50px;
    min-height: 494px;
    display: flex;
    align-items: center;
}

.blog-hero__content {
    max-width: 670px;
}

.blog-hero__content h1 {
    font-family: "Inter Tight", sans-serif;
    font-size: 64px;
    font-weight: 700;
    color: #575656;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.blog-hero__content p {
    font-size: 20px;
    max-width: 628px;
    line-height: 25px;
    letter-spacing: 2px;
    color: #575656;
    font-weight: 500;
}

/* --- Filtros --- */
.blog-filter {
    text-align: center;
    margin-bottom: 60px;
}

.blog-filter__label {
    display: block;
    font-family: "Inter Tight", sans-serif;
    font-size: 14px;
    text-transform: uppercase;
    color: #666;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.blog-filter__list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    overflow-x: auto;
    white-space: nowrap;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.blog-filter__list::-webkit-scrollbar {
    display: none;
}

.btn-filter {
    display: inline-block;
    padding: .75rem 1.5rem;
    border: 1px solid #575656;
    color: #575656;
    font-size: 1rem;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 0.5px;
    border-radius: .25rem;
    background: #fff;
    cursor: pointer;
}

.btn-filter:hover,
.btn-filter.is-active {
    border-color: var(--color-primary);
    color: var(--color-primary);
    text-decoration: none;
}

/* --- Wrapper Principal --- */
.blog-main-wrapper {
    margin-bottom: 80px;
}

/* --- Post Destaque --- */
.post-featured {
    display: flex;
    align-items: center;
    background: #f8f8f8;
    max-height: 358px;
    margin-bottom: 80px;
    gap: 40px;
}

.post-featured__content {
    flex: 1;
    padding-right: 20px;
}

/* Header do Destaque (Tag e Data) */
.post-featured__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.post-featured__header .meta-tag {
    color: #e6005c;
    border: 1px solid #e6005c;
    padding: 4px 12px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
}

.post-featured__header .meta-date {
    color: #999;
    font-size: 0.9rem;
}

/* Tempo de Leitura do Destaque */
.post-featured__time {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.post-featured__image img {
    width: 100%;
    max-height: 22.375rem;
    object-fit: cover;
    object-position: center center;
}

.post-featured__title {
    font-family: "Inter Tight", sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    line-height: 50px;
    margin-bottom: 20px;
    text-transform: uppercase;
    color: #575656;
}

.post-featured__excerpt {
    font-size: 20px;
    font-family: "Inter Tight", sans-serif;
    font-weight: 500;
    line-height: 25px;
    color: #575656;
    letter-spacing: 2px;
    margin-bottom: 30px;
    
    /* Regras de limitação de linha */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* --- Botão Ler Mais --- */
.btn-read-more,
.btn-read-more-card {
    display: inline-flex;
    border-radius: 4px;
    align-items: center;
    justify-content: center; /* Centralizar no mobile/card */
    font-size: 16px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 500;
    color: #7D7A7A;
    border: 1px solid #7D7A7A;
    padding-inline: 24px;
    height: 48px;
    gap: 10px;
    width: 100%; /* Ocupa largura disponível no container */
    max-width: fit-content; /* Mas se ajusta ao conteúdo */
    margin-top: auto;
}

/* Ajuste específico para o card ocupar largura total */
.btn-read-more-card {
    max-width: 100%;
}

.btn-read-more .icon-btn,
.btn-read-more-card .icon-btn {
    width: 24px;
    height: auto;
    display: block;
    flex-shrink: 0;
}

.btn-read-more:hover .icon-btn,
.btn-read-more-card:hover .icon-btn {
    filter: brightness(0) invert(1);
}

.btn-read-more:hover,
.btn-read-more-card:hover {
    background: #7D7A7A;
    text-decoration: none;
    color: #fff;
}

/* --- Grid de Posts (Layout) --- */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr)); 
    gap: 30px;
    margin-bottom: 60px;
    width: 100%;
    align-items: stretch;
}

/* --- Card --- */
.post-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    width: 100%;
    height: 100%;
}

.post-card__image {
    overflow: hidden;
    width: 100%;
}

.post-card__image img {
    width: 100%;
    border-radius: 12px;
    height: 269px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.post-card:hover .post-card__image img {
    transform: scale(1.05);
}

.post-card__body {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.post-card__content-pad {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    padding-top: 24px;
}

/* Header do Card (Tag + Data) */
.post-card__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

/* Estilo da Tag (Borda Rosa) */
.post-card__meta {
    font-size: 12px;
    line-height: 12px;
    color: var(--color-primary);
    font-weight: 700;
    border-radius: 4px;
    border: 1px solid var(--color-primary);
    display: inline-flex;
    padding: 4px 8px;
    text-transform: uppercase;
}

/* Estilo da Data no Card */
.post-card__date {
    color: #575656;
    font-size: 12px;
}

.post-card__time {
    font-size: 12px;
    color: #575656;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 5px;
}
.post-card__time img {
    width: 20px;
    height: 20px;
}

.post-card__title {
    font-family: "Inter Tight", sans-serif;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 2px;
    line-height: 20px;
    margin-bottom: 12px;
    text-transform: uppercase;
    color: #575656;
}

.post-card__excerpt {
    display: -webkit-box;
    -webkit-line-clamp: 2; 
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis; 
    font-size: .875rem;
    font-weight: 500;
    color: #575656;
    line-height: 1.5;
    height: 2.625rem; /* Altura calculada aprox */
    margin-bottom: 1.5rem;
}

.x-posts__more-btn {
    background: var(--color-primary);
    color: #fff;
    display: flex;
    border: none;
    padding: 15px 40px;
    text-align:center; 
    margin: auto;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.3s;
}

.x-posts__more {
    margin-block: 48px;
}

/* Mensagem de Sem Resultados */
.no-results-message {
    text-align: center;
    width: 100%;
    padding: 40px;
    color: #666;
}
.text-after-posts {
    padding-top: 48px;
    display: flex;
    flex-direction: column;
    font-family: "Inter Tight", sans-serif;
    padding-inline: 16px;
    gap: 20px;
}
.text-after-posts .highlight-text {
    font-family: "Inter Tight", sans-serif;
    font-size: 24px;
    font-weight: 400;
    color: var(--color-primary);
}
.text-after-posts p {
    font-size: 16px;
    color: #575656;
}
.text-after-posts strong {
    font-weight: 700;
    color: #575656;
}
/* =========================================
   3. RESPONSIVO DO LAYOUT NOVO
   ========================================= */
@media (max-width: 992px) {
    .blog-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .post-featured {
        flex-direction: column-reverse;
        max-height: none; /* Remove altura fixa no mobile */
    }
    .post-featured__content {
        padding-right: 0;
    }
}

@media (max-width: 600px) {
    .container {
        padding-inline: 16px;
    }
    .blog-hero {
        padding: 64px 30px;
        align-items: flex-start;
        min-height: 534px;
        background-image: url('http://adcosrelayout.local/wp-content/uploads/2025/12/image-bg-mobile.png');
        background-size: contain;
        background-repeat: no-repeat;
        background-position: bottom center;
    }
    .blog-hero__content p {
        font-size: 15px;
        line-height: 100%;
    }
    .blog-hero__content h1 {
        font-size: 28px;
        line-height: 100%;
    }
    .blog-grid {
        grid-template-columns: minmax(0, 1fr);
    }
    .blog-filter__list {
        padding-inline: 16px;
        justify-content: flex-start;
        flex-wrap: nowrap;
        overflow-x: auto;
        gap: 10px;
        padding-bottom: 10px;
    }
    .post-featured {
        gap: 10px;
        padding-inline: 16px;
    }
    .post-featured__title {
        font-size: 1.5rem;
        line-height: 100%;
    }
    .btn-read-more {
        max-width: 100%; /* Botão full width no mobile */
    }
    .text-after-posts .highlight-text {
    font-family: "Inter Tight", sans-serif;
    font-size: 18px;
    line-height: 28px;
    font-weight: 600;
    color: var(--color-primary);
}
.text-after-posts p {
    font-size: 14px;
    line-height: 24px;
    color: #575656;
}
.text-after-posts strong {
    font-weight: 700;
    color: #575656;
}

}

/* =========================================
   4. HEADER E MENU
   ========================================= */

/* header mobile */
.header-blog-mobile { display: none; }

.header-blog {
    font-family: "Inter Tight", sans-serif;
    position: relative;
    z-index: 9999999;
}
.header-blog .on-scroll { display: none; }
.header-blog .on-scroll button {
    background: transparent;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
}
.header-blog .on-scroll button.active::after {
    background-image: url(https://cbadcos.vtexassets.com/arquivos/icon-close-small-adcos.svg);
    background-size: 11px;
} 
.header-blog .on-scroll button::after {
    content: "";
    background-image: url(https://cbadcos.vtexassets.com/arquivos/drawer-menu-category-adcos.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    width: 40px;
    height: 40px;
    transition: .5s;
    display: inline-block;
    background-size: 42px;
}
.header-blog.is-scroll {
    background-color: #fff;
    padding:0 0 12px 0;
    position: fixed;
    top: 0;
    width: 100%;
    border-bottom: solid 1px #EEEEEE;
}

/* 1. Garante que o container pai ocupe toda a largura disponível quando scrollar */
.header-blog.is-scroll .header-blog-main {
    width: 100%;
    margin-left: 0;
    padding-block: 10px; 
}

.header-blog.is-scroll .on-scroll {
    width: 100%;
}

.header-blog.is-scroll .on-scroll button {
    justify-self: start;
}

.header-blog.is-scroll .on-scroll > a {
    justify-self: center;
    display: flex;
    margin-inline: auto;
}

.header-blog.is-scroll .header-blog-top,
.header-blog.is-scroll .header-blog-bottom-menu { display: none; }
.header-blog.is-scroll .off-scroll { display: none; }
.header-blog.is-scroll .on-scroll {
    display: flex;
    align-items: center;
    gap: 18px;
}
.header-blog-top {
    display: flex;
    justify-content: flex-end;
}
.header-blog-top ul { display: flex; }
.header-blog-top ul li + li { margin-left: 40px;
display: flex;
align-items: center; }
.header-blog-top ul a { font-size: 12px; color: #848d94; }

.header-blog-main {
    align-items: center;
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 9999;
    width: calc(50% + 72.5px);
    margin-left: auto;
    padding-block: 29px 10px;
}
.header-blog-main.on-scroll {
    width: 100%;
    justify-content: space-between;
}
.header-blog-main-right span { font-size: 12px; font-weight: 500; margin-left: 5px; }
.header-blog-main-right a { text-decoration: none; }
.header-blog-main-right img { width: 30px; height: 15px; margin-top: 0; }
.header-blog-top > ul > li {
    margin-block: 0!important;
}
.header-submenu-bg {
    position: absolute;
    left: 0;
    width: 100vw;
    display: none;
    margin-top: -52px;
    background: #fff;
    padding-bottom: 52px;
    max-width: unset;
    padding-top: 35px;
}
.header-submenu-bg.active { display: block; }
.header-submenu {
    display: flex;
    position: relative;
    background: #fff;
    min-width: max-content;
    padding-left: 3%;
    padding-right: 3%;
    padding-bottom: 30px;
    gap: 42px;
    top: 51px;
    left: 0;
    max-width: 1296px;
    margin: auto;
}
.header-submenu .banner { margin-left: 52px; }
.header-submenu .divider { grid-gap: 16px; display: flex; }
.header-submenu .divider div:nth-child(2) { padding-top: 56px; }
.header-submenu li a {
    color: #575656;
    font-weight: 600;
    margin-bottom: 18px;
    font-family: "Inter Tight", sans-serif;
    font-size: 13px;
    display: block;
}
.header-submenu h4 {
    font-size: 16px;
    font-weight: 600;
    color: #575656;
    letter-spacing: 1px;
    margin-bottom: 14px;
    padding-bottom: 8px;
    font-family: "Inter Tight", sans-serif;
}
.header-submenu a:hover {
    text-decoration: underline;
    color: #D70A5A;
    text-decoration-color: #D70A5A;
    text-underline-offset: initial;
}
.header-blog.is-scroll .header-blog-bottom.active { display: block; }
.header-blog.is-scroll .header-blog-bottom.active .header-blog-bottom-menu { display: flex !important; }

.header-blog-bottom-menu { display: flex; justify-content: space-between; }
.header-blog-bottom-menu > li > a {
    color: #575656;
    font-size: 13px;
    font-weight: 400;
    padding: 4px 0;
    line-height: 40px;
    display: block;
    white-space: nowrap;
    position: relative;
    z-index: 999;
    text-decoration: none;
}
.header-blog-bottom-menu > li > a.has-submenu::after {
    content: " ";
    width: 12px;
    height: 12px;
    background-image: url(https://cbadcos.vtexassets.com/arquivos/arrow-mobile-menucategory-adcos.svg);
    display: block;
    background-repeat: no-repeat;
    position: absolute;
    transform: rotate(271deg);
    transition-duration: .2s;
    right: -16px;
    top: 34%;
}
.header-blog-bottom-menu > li:hover > a.has-submenu::after {
    transform: rotate(89deg);
    transition-duration: .2s;
    top: 40%;
}
.header-blog-bottom-menu > li > a.has-submenu { transition: 0.2s; border-bottom: 2px solid transparent; }
.header-blog-bottom-menu > li:hover > a.has-submenu { border-color: #d40053; }
.header-blog-bottom-menu > li:hover > a.has-submenu + .header-submenu-bg { display: block; }

.header-submenu-see-all.facial h4 { display: flex; flex-direction: column; } 
.header-submenu-see-all.facial a:hover { text-decoration: none; }
.header-submenu-see-all.facial h4::after {
    content: 'ver tudo';
    font-size: 11px;
    color: #D70A5A;
    padding-top: 3px;
    text-decoration: underline;
    text-underline-offset: initial;
}

@media (min-width: 1300px) {
    .container-blog { padding-left: 5%; padding-right: 5%; }
}
@media (min-width: 1025px) {
    .container-blog {
        max-width: 1296px;
        padding-left: 3.5%;
        padding-right: 3.5%;
        margin-inline: auto;
    }
}
@media (max-width: 1080px) {
    .x-share.is--mobile { display: none !important; }
}
@media (max-width: 1024px) {
    .page-id-3675 { padding-top: 69.94px !important; }
    .header-blog { display: none; }
    .header-blog-mobile {
        display: block;
        position: fixed;
        background-color: #fff;
        width: 100%;
        top: 0;
        z-index: 99999;
    }
    .header-blog-mobile-container {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 16px 3%;
    }
    .header-blog-mobile a:not(.has-submenu):hover { text-decoration: underline; }
    .header-blog-mobile a.see-all { color: #d40053; }
    .header-blog-mobile a.see-all:hover { text-decoration: underline; }
    .header-blog-mobile button.btn-mobile {
        display: flex;
        align-items: center;
        padding-right: 10px;
        background-color: transparent;
        border: none;
        padding-right: 0;
    }
    .header-blog-mobile button.btn-mobile div::before {
        content: '';
        display: inline-block;
        background-image: url(https://cbadcos.vtexassets.com/arquivos/drawer-menu-category-adcos.svg);
        background-position: 0;
        background-repeat: no-repeat;
        background-size: 100%;
        min-width: 41px;
        min-height: 32px;
        height: auto;
    }
    .header-blog-mobile button.btn-mobile span {
        display: inline-block;
        margin-left: -6px;
        color: #222;
        font-size: 12px;
        font-weight: 600;
    }
    .header-blog-mobile .logo {
        max-width: 130px;
        display: block;
        margin-left: -50px;
    }
    .header-blog-mobile .logo img { max-width: 100%; }
    .header-blog-mobile .account {
        width: 20px;
        display: block;
        margin-right: 6px;
    }
    .header-blog-mobile .account img { max-width: 100%; display: block; }
    .header-blog-mobile-menu-top .account {
        align-items: center;
        display: flex;
        width: auto;
        margin-left: -6px;
        text-decoration: none;
        font-size: 14px;
        color: #222;
        font-family: "Inter Tight", sans-serif;
    }
    .header-blog-mobile-menu-top .account::before {
        content: "";
        background-image: url(https://cbadcos.vtexassets.com/arquivos/login-icon-adcos.svg);
        background-repeat: no-repeat;
        height: 24px;
        min-width: 28px;
        display: block;
        background-position: 50%;
        margin-right: 2px;
    }
    .header-blog-mobile-menu-top .btn-close-mobile {
        content: "";
        background-image: url(https://cbadcos.vtexassets.com/arquivos/icon-close-small-adcos.svg);
        background-repeat: no-repeat;
        width: 15px;
        height: 15px;
        display: flex;
        margin: 5px;
        top: 20px;
        right: 20px;
        border: none;
        align-items: center;
        justify-content: center;
        background-position: center;
        background-color: transparent;
    }
    .header-blog-mobile-menu {
        position: fixed;
        top: 0;
        left: -150%;
        width: 100%;
        height: 100vh;
        z-index: 9999;
        transition: 0.3s;
    }
    .header-blog-mobile-menu.active { background: rgba(0,0,0, 0.5); left: 0; }
    .header-blog-mobile-menu-box {
        background-color: #fff;
        height: 100vh;
        max-width: 450px;
        width: 100%;
    }
    .header-blog-mobile-menu-top {
        padding: 18px 30px 23px;
        border-bottom: 2px solid #eee;
        margin-bottom: 7px;
    }
    .header-blog-mobile-menu-top span { font-size: 12px; font-family: "Inter Tight", sans-serif; }
    .header-blog-mobile-menu-top div {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 16px;
    }
    .header-blog-mobile-menu-main { padding: 14px 30px 15px; }
    .header-blog-mobile-menu-main ul a {
        font-size: 14px;
        color: #222;
        font-weight: 700;
        position: relative;
        font-family: "Inter Tight", sans-serif;
        text-decoration: none;
        padding: 15px 0;
        display: block;
    }
    .header-blog-mobile-menu-main ul a.has-submenu::after {
        content: "";
        width: 7px;
        height: 12px;
        background-image: url(https://cbadcos.vtexassets.com/arquivos/arrow-mobile-menucategory-adcos.svg);
        background-repeat: no-repeat;
        background-size: contain;
        display: block;
        position: absolute;
        right: 20px;
        bottom: 16px;
    }
    .header-blog-mobile-menu-main .sub-menu {
        position: fixed;
        left: 0;
        top: 0;
        background: #fff;
        width: 100%;
        max-width: 450px;
        height: 100vh;
        padding-left: 30px;
        padding-right: 30px;
        padding-top: 10px;
        transition: 0.3s;
        transform: translate3d(-110%, 0, 0);
    }
    .header-blog-mobile-menu-main .sub-menu.active { transform: translate3d(0, 0, 0); }
    .header-blog-mobile-menu-main .sub-menu.sub-menu-nv-1 { z-index: 990; }
    .header-blog-mobile-menu-main .sub-menu.sub-menu-nv-2 { z-index: 991; }
    .header-blog-mobile-menu-main .sub-menu.sub-menu-nv-3 { z-index: 992; }
    .header-blog-mobile-menu-main .overflow-scroll {
        position: relative;
        padding-bottom: 30px;
        margin-bottom: 12px;
        max-height: 54vh;
        overflow-y: auto;
        overflow-x: hidden;
    }
    .header-blog-mobile-menu-main .sub-menu-has-divider { position: relative; padding-top: 16px; }
    .header-blog-mobile-menu-main .sub-menu-has-divider::before {
        content: '';
        display: block;
        height: 2px;
        background-color: #eee;
        margin-top: 7px;
        width: calc(100% + 60px);
        left: -30px;
        position: absolute;
        top: 0;
    }
    .header-blog-mobile-menu-main .sub-menu a { font-weight: 400; }
    .header-blog-mobile-menu-main .sub-menu a.btn-back {
        align-items: center;
        font-size: 12px;
        font-family: "Inter Tight", sans-serif;
        display: flex;
        margin-bottom: 20px;
    }
    .header-blog-mobile-menu-main .sub-menu a.btn-back::before {
        content: "";
        background-image: url(https://cbadcos.vtexassets.com/arquivos/arrow-mobile-menucategory-adcos-voltar.svg);
        background-position: 0;
        background-repeat: no-repeat;
        width: 13px;
        height: 13px;
        display: block;
        margin-right: 10px;
    }
    .header-blog-mobile-menu-main .sub-menu-title {
        color: #d40053;
        font-size: 14px;
        font-weight: 700 !important;
        margin-bottom: 14px;
        padding-bottom: 0;
    }
    .header-blog-mobile-menu-bottom ul a {
        font-weight: 400;
        text-decoration: none !important;
    }
}

.fade-in { animation: fadeIn 0.5s ease-in-out; }
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* =========================================
   5. AJUSTES HEADER
   ========================================= */

  .header-blog .container .header-blog-bottom-menu{
    justify-content: center;
    gap: 16px;
    
  }
  .header-blog .container .header-blog-bottom-menu li {
    padding-inline: 8px;
  }

  .header-blog .container .header-blog-bottom-menu li .has-submenu {
    margin-right: 12px;
    color: #575656;
  }

  /* =========================================
   SEARCH HEADER ANIMATION
   ========================================= */

/* O container do li */
.header-blog-top ul li.search-wrapper {
    display: flex;
    align-items: center;
    position: relative;
    margin-left: 20px !important; /* Ajuste fino do espaçamento */
}

/* O formulário flex para alinhar input e botão */
.search-form {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    position: relative;
}

/* O campo de input (inicialmente escondido) */
.search-form .search-field {
    width: 0;
    opacity: 0;
    visibility: hidden;
    background: transparent;
    border: none;
    border-bottom: 1px solid #575656;
    color: #575656;
    font-size: 14px;
    padding: 5px 0;
    outline: none;
    transition: all 0.4s ease;
    cursor: pointer; /* Para clicar e abrir se estiver por cima */
}

/* Placeholder styling */
.search-form .search-field::placeholder {
    color: #999;
    font-weight: 300;
}

/* O botão de submit (o ícone) */
.search-form .search-submit {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    margin-left: 10px;
    z-index: 2; /* Garante que o ícone fique clicável */
    display: flex;
    align-items: center;
}

/* ESTADO ATIVO (Quando a busca está aberta) */
.search-wrapper.active .search-field {
    width: 220px; /* Largura expandida */
    opacity: 1;
    visibility: visible;
    padding-right: 10px;
    cursor: text;
}

/* =========================================
   SEARCH MOBILE (Substituindo Minha Conta)
   ========================================= */

/* Ajuste do container da lupa no mobile */
.header-blog-mobile .search-wrapper.mobile-search {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    position: relative;
    height: 30px; /* Altura aproximada do header */
}

/* O Botão da Lupa */
.header-blog-mobile .search-submit {
    background: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
    z-index: 20; /* Garante que fique acima do input */
    position: relative;
    display: flex;
    align-items: center;
}

/* Ajuste do tamanho do ícone no mobile */
.header-blog-mobile .search-submit img {
    width: 22px; /* Tamanho similar ao icone de conta antigo */
    height: auto;
}

/* O Campo de Input (Inicialmente escondido) */
.header-blog-mobile .search-field {
    position: absolute;
    right: 0; /* Ancora na direita */
    top: 50%;
    transform: translateY(-50%);
    width: 0; /* Largura zero */
    opacity: 0;
    visibility: hidden;
    background-color: #fff; /* Fundo branco para cobrir o logo */
    border: none;
    border-bottom: 1px solid #D70A5A; /* Linha rosa Adcos */
    height: 40px;
    font-size: 14px;
    color: #333;
    padding-right: 35px; /* Espaço para o ícone não ficar em cima do texto */
    padding-left: 10px;
    transition: all 0.4s ease;
    z-index: 10;
}

/* ESTADO ATIVO (Quando clica na lupa) */
.header-blog-mobile .search-wrapper.active .search-field {
    width: 260px; /* Largura suficiente para cobrir até perto do menu */
    opacity: 1;
    visibility: visible;
}

/* Pequeno ajuste para garantir que o input não ultrapasse a tela em celulares muito pequenos */
@media (max-width: 360px) {
    .header-blog-mobile .search-wrapper.active .search-field {
        width: 200px;
    }
}