.ac-content_widget
    *
    :not(
        .wp-core-ui,
        .wp-editor-wrap,
        .tmce-active,
        .wp-editor-tools,
        .hide-if-no-js,
        .wp-media-buttons,
        .button,
        .insert-media,
        .add_media,
        .wp-media-buttons-icon,
        .wp-editor-tabs,
        .wp-switch-editor,
        .switch-tmce,
        .switch-html,
        .wp-editor-container,
        .quicktags-toolbar,
        .mce-tinymce,
        .mce-container,
        .mce-panel,
        .mce-container-body,
        .mce-stack-layout,
        .mce-top-part,
        .mce-stack-layout-item,
        .mce-first,
        .mce-menubar,
        .mce-toolbar,
        .mce-flow-layout,
        .mce-widget,
        .mce-btn,
        .mce-menubtn,
        .mce-flow-layout-item,
        .mce-btn-has-text,
        .mce-txt,
        .mce-caret,
        .mce-last,
        .mce-toolbar-grp,
        .mce-btn-group,
        .mce-disabled,
        .mce-ico,
        .mce-i-undo,
        .mce-i-redo,
        .mce-i-bold,
        .mce-i-italic,
        .mce-i-alignleft,
        .mce-i-aligncenter,
        .mce-i-alignright,
        .mce-i-alignjustify,
        .mce-i-outdent,
        .mce-i-indent,
        .mce-edit-area,
        .mce-statusbar,
        .mce-path,
        .mce-path-item,
        .mce-resizehandle,
        .mce-i-resize,
        .mce-branding,
        .mce-label,
        .wp-editor-area
    ) {
    /* font-family: 'Baloo Thambi 2', sans-serif !important;
*/
    margin: 0;
    padding: 0;
    outline: none;
    text-decoration: none;
    border: none;
    box-sizing: border-box !important;
    transition: all 0.3s linear;
}
@media screen and (max-width: 1200px) {

}
@media screen and (max-width: 900px) {

}

/* ===== Blog Widget ===== */

.ac-blog_filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
}

.ac-blog_tab,
.ac-blog_tab:link,
.ac-blog_tab:visited {
    padding: 8px 22px !important;
    border-radius: 999px !important;
    border: 1.5px solid #d1d5db !important;
    background: #fff !important;
    color: #495057 !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    cursor: pointer !important;
    line-height: 1.4 !important;
    box-shadow: none !important;
    text-decoration: none !important;
    transition: color .2s, border-color .2s, background-color .2s;
}

.ac-blog_tab:hover,
.ac-blog_tab:focus,
.ac-blog_tab:focus-visible,
.ac-blog_tab:active {
    outline: none !important;
    box-shadow: none !important;
    text-decoration: none !important;
}

/* Estado ATIVO/PRESSIONADO — fallback neutro (Elementor sobrepõe via "Botão ativo/pressionado — Fundo/Texto") */
.ac-blog_tab.active,
.ac-blog_tab.active:link,
.ac-blog_tab.active:visited,
.ac-blog_tab.active:hover,
.ac-blog_tab.active:focus,
.ac-blog_tab.active:focus-visible,
.ac-blog_tab.active:active,
.ac-blog_tab:not(.active):active {
    background: #002E5D !important;
    background-color: #002E5D !important;
    border-color: #002E5D !important;
    color: #fff !important;
}

.ac-blog_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    min-height: 100px;
    transition: opacity .2s;
}

.ac-blog--loading .ac-blog_grid {
    opacity: .35;
    pointer-events: none;
}

.ac-blog_card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 1px 6px rgba(0,0,0,.08);
    display: flex;
    flex-direction: column;
}

.ac-blog_card-img {
    position: relative;
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #e5e7eb;
    flex-shrink: 0;
}

.ac-blog_card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .35s;
}

.ac-blog_card:hover .ac-blog_card-img img {
    transform: scale(1.04);
}

.ac-blog_no-img {
    width: 100%;
    height: 100%;
    background: #e5e7eb;
}

.ac-blog_badge {
    position: absolute;
    top: 12px;
    left: 12px;
    /* background-color vem do controle "Cor de destaque" no Elementor */
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 999px;
    line-height: 1.4;
    pointer-events: none;
}

.ac-blog_card-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.ac-blog_date {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #9ca3af;
    font-size: 13px;
    margin-bottom: 10px;
}

.ac-blog_date svg {
    flex-shrink: 0;
}

.ac-blog_title {
    font-size: 17px;
    font-weight: 700;
    line-height: 1.4;
    color: #111827;
    margin-bottom: 10px;
}

.ac-blog_title a {
    color: inherit;
    text-decoration: none;
    transition: color .2s;
}

.ac-blog_excerpt {
    color: #6b7280;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 16px;
    flex: 1;
}

.ac-blog_readmore {
    /* color vem do controle "Cor do Ler mais" no Elementor */
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: opacity .2s;
}

.ac-blog_readmore:hover {
    opacity: .75;
}

.ac-blog_pagination {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 40px;
}

.ac-blog_page-btn,
.ac-blog_page-btn:link,
.ac-blog_page-btn:visited {
    min-width: 38px !important;
    height: 38px !important;
    padding: 0 10px !important;
    border-radius: 8px !important;
    border: 1.5px solid #d1d5db !important;
    background: #fff !important;
    color: #374151 !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    cursor: pointer !important;
    box-shadow: none !important;
    text-decoration: none !important;
    transition: color .2s, border-color .2s, background-color .2s;
}

.ac-blog_page-btn:hover,
.ac-blog_page-btn:focus,
.ac-blog_page-btn:focus-visible,
.ac-blog_page-btn:active {
    outline: none !important;
    box-shadow: none !important;
    text-decoration: none !important;
}

/* Página atual / pressionada — fallback neutro (Elementor sobrepõe via "Botão ativo/pressionado") */
.ac-blog_page-btn.active,
.ac-blog_page-btn.active:link,
.ac-blog_page-btn.active:visited,
.ac-blog_page-btn.active:hover,
.ac-blog_page-btn.active:focus,
.ac-blog_page-btn.active:focus-visible,
.ac-blog_page-btn.active:active,
.ac-blog_page-btn:not(.active):active {
    background: #002E5D !important;
    background-color: #002E5D !important;
    border-color: #002E5D !important;
    color: #fff !important;
}

.ac-blog_page-btn:not(.active):hover,
.ac-blog_page-btn:not(.active):focus,
.ac-blog_page-btn:not(.active):focus-visible {
    /* border-color e color vêm do controle "Cor de destaque" no Elementor */
    background: #fff !important;
}

.ac-blog_empty {
    grid-column: 1 / -1;
    text-align: center;
    color: #9ca3af;
    padding: 48px 0;
    font-size: 15px;
}

@media (max-width: 900px) {
    .ac-blog_grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .ac-blog_grid {
        grid-template-columns: 1fr;
    }
    .ac-blog_filters {
        gap: 8px;
    }
}

/* ===== Timeline Slider ===== */

.ac-tl {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #111;
    user-select: none;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
}

/* ── Imagens de fundo (cobrem o widget INTEIRO: slides + barra) ── */

.ac-tl_bgs {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.ac-tl_slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity .65s ease;
}

.ac-tl_slide.is-active {
    opacity: 1;
}

.ac-tl_bg {
    position: absolute !important;
    inset: 0 !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    max-height: none !important;
    min-width: 100% !important;
    min-height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
    display: block !important;
    padding: 0 !important;
    margin: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
}

.ac-tl_bg--empty {
    background: #222;
}

/* Por padrão a imagem mobile fica escondida — aparece apenas em telas pequenas (regra em @media abaixo) */
.ac-tl_bg--mobile {
    display: none !important;
}

/* ── Overlay degradê (cobre o widget inteiro: slides + barra) ── */

.ac-tl_overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: linear-gradient(to bottom,
        rgba(0,0,0,0)   0%,
        rgba(0,0,0,.25) 45%,
        rgba(0,0,0,.65) 75%,
        rgba(0,0,0,.85) 100%
    );
    pointer-events: none;
}

/* ── Área de conteúdo dos slides (texto + setas), POR CIMA das imagens ── */

.ac-tl_slides-wrap {
    position: relative;
    z-index: 2;
    height: 560px;
}

.ac-tl_stage {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    pointer-events: none;
}

/* ── Setas de navegação ── */

.ac-tl_nav {
    position: absolute;
    top: 32px;
    left: 28px;
    display: flex;
    gap: 10px;
    pointer-events: auto;
    z-index: 5;
}

.ac-tl_arrow {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1.8px solid rgba(255,255,255,.75);
    background: transparent;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background .2s, border-color .2s;
    flex-shrink: 0;
    padding: 0px !important;
}

.ac-tl_arrow:hover {
    background: rgba(255,255,255,.2);
}

/* ── Texto ── */

.ac-tl_contents {
    position: relative;
    padding: 0 28px 20px;
    pointer-events: none; /* só os paineis visíveis recebem cliques */
}

.ac-tl_content {
    display: none;
    max-width: 520px;
    pointer-events: auto;
}

.ac-tl_content.is-active {
    display: block;
    animation: ac-tl-fadein .45s ease;
}

@keyframes ac-tl-fadein {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: translateY(0);    }
}

.ac-tl_title {
    font-size: 42px;
    font-weight: 700;
    color: #fff;
    line-height: 1.15;
    margin: 0 0 10px;
}

.ac-tl_desc {
    font-size: 15px;
    color: rgba(255,255,255,.88);
    line-height: 1.65;
    margin: 0;
}

/* ── Barra da timeline (POR CIMA das imagens, com transparência) ── */

.ac-tl_bar {
    position: relative;
    z-index: 2;
    padding: 16px 24px 22px;
    overflow-x: auto;
    scrollbar-width: none;
    background: transparent;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
}

.ac-tl_bar::-webkit-scrollbar {
    display: none;
}

.ac-tl_items {
    position: relative;
    display: flex;
    align-items: flex-end;
    /* Extremos colados nas bordas → não sobra barra no início nem no fim */
    justify-content: space-between;
    min-width: max-content;
    width: 100%;
    gap: 16px;
    z-index: 1;
}

/* Linha vive dentro de .ac-tl_items, e termina nos centros dos markers extremos */
.ac-tl_line {
    position: absolute;
    /* 52px (marker) / 2 = 26px → casa exatamente com os centros */
    left: 26px;
    right: 26px;
    height: 2px;
    background: rgba(255,255,255,.35);
    pointer-events: none;
    bottom: 26px;
    z-index: 0;
}

.ac-tl_item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    flex: 1;
    min-width: 80px;
    transition: transform .2s;
}

.ac-tl_item:hover {
    transform: translateY(-2px);
}

.ac-tl_date {
    font-size: 12px;
    font-weight: 500;
    color: rgba(255,255,255,.55);
    white-space: nowrap;
    text-align: center;
    transition: color .3s, font-weight .3s;
}

.ac-tl_item.is-active .ac-tl_date {
    color: #fff;
    font-weight: 700;
}

.ac-tl_marker {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    overflow: hidden;
    background: #444;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform .3s ease, box-shadow .3s ease;
}

.ac-tl_item.is-active .ac-tl_marker {
    transform: scale(1.18);
    box-shadow: 0 0 0 3px rgba(255,255,255,.6);
}

.ac-tl_marker img {
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    max-height: none !important;
    object-fit: cover !important;
    object-position: center !important;
    display: block !important;
    padding: 0 !important;
    margin: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
}

/* ── Responsivo ── */

@media (max-width: 900px) {
    .ac-tl_slides-wrap { height: 420px; }
    .ac-tl_title       { font-size: 30px; line-height: 1.18; }
    .ac-tl_desc        { font-size: 14px; }
    .ac-tl_nav         { top: 22px; left: 20px; }
    .ac-tl_contents    { padding: 0 20px 16px; }
    .ac-tl_bar         { padding: 14px 18px 20px; }
    .ac-tl_items       { gap: 14px; }
}

@media (max-width: 600px) {
    .ac-tl { border-radius: 8px; }

    /* Quando o item tem imagem mobile, trocamos: esconde a desktop e mostra a mobile */
    .ac-tl_slide.has-mobile-bg .ac-tl_bg--desktop { display: none !important; }
    .ac-tl_slide.has-mobile-bg .ac-tl_bg--mobile  { display: block !important; }

    .ac-tl_slides-wrap { height: 360px; }
    .ac-tl_title       { font-size: 22px; line-height: 1.22; margin-bottom: 8px; }
    .ac-tl_desc        { font-size: 13px; line-height: 1.55; }
    .ac-tl_content     { max-width: 100%; }

    /* Setas mais compactas, posicionadas no canto inferior direito do slide */
    .ac-tl_nav         {
        position: absolute;
        top: auto;
        left: auto;
        right: 14px;
        bottom: 14px;
        gap: 8px;
    }
    .ac-tl_arrow       {
        width: 36px;
        height: 36px;
        background: rgba(0,0,0,.35);
        border-color: rgba(255,255,255,.85);
    }

    .ac-tl_contents    { padding: 0 16px 18px; padding-right: 100px; }

    /* Barra inferior */
    .ac-tl_bar         { padding: 12px 14px 18px; }
    .ac-tl_items       { gap: 18px; }
    .ac-tl_item        { min-width: 60px; }
    .ac-tl_marker      { width: 40px; height: 40px; }
    .ac-tl_date        { font-size: 11px; }
    /* No mobile o marker tem 40px → linha começa/termina em 20px */
    .ac-tl_line        { bottom: 20px; left: 20px; right: 20px; }

    /* No mobile o hover-translateY incomoda em touch */
    .ac-tl_item:hover  { transform: none; }
    .ac-tl_item.is-active .ac-tl_marker { transform: scale(1.12); }
}

/* ===== Blog V2 - Search ===== */

/* Botão circular do ícone de pesquisa (dentro da linha de filtros) */
.ac-blog-v2_search-toggle,
.ac-blog-v2_search-toggle:link,
.ac-blog-v2_search-toggle:visited {
    width: 38px !important;
    height: 38px !important;
    min-width: 38px !important;
    padding: 0 !important;
    border-radius: 50% !important;
    border: 1.5px solid #d1d5db !important;
    background: #fff !important;
    color: #495057 !important;
    cursor: pointer !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    line-height: 1 !important;
    flex-shrink: 0;
    appearance: none !important;
    -webkit-appearance: none !important;
    box-shadow: none !important;
    transition: color .2s, border-color .2s, background-color .2s, transform .2s;
}
.ac-blog-v2_search-toggle:hover,
.ac-blog-v2_search-toggle:focus,
.ac-blog-v2_search-toggle:focus-visible,
.ac-blog-v2_search-toggle:active {
    /* color e border-color vêm do controle "Cor de destaque" no Elementor */
    background: #fff !important;
    outline: none !important;
    box-shadow: none !important;
}
/* Search toggle aberto/pressionado — fallback neutro (Elementor sobrepõe via "Botão ativo/pressionado") */
.ac-blog-v2_search-toggle.is-active,
.ac-blog-v2_search-toggle.is-active:link,
.ac-blog-v2_search-toggle.is-active:visited,
.ac-blog-v2_search-toggle.is-active:hover,
.ac-blog-v2_search-toggle.is-active:focus,
.ac-blog-v2_search-toggle.is-active:focus-visible,
.ac-blog-v2_search-toggle.is-active:active,
.ac-blog-v2_search-toggle:not(.is-active):active {
    background: #002E5D !important;
    background-color: #002E5D !important;
    border-color: #002E5D !important;
    color: #fff !important;
    outline: none !important;
    box-shadow: none !important;
}

/* Troca de ícone: lupa (fechado) ⇄ X (aberto) */
.ac-blog-v2_search-toggle-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 0;
}
.ac-blog-v2_search-toggle-icon--close {
    display: none;
}
.ac-blog-v2_search-toggle.is-active .ac-blog-v2_search-toggle-icon--open {
    display: none;
}
.ac-blog-v2_search-toggle.is-active .ac-blog-v2_search-toggle-icon--close {
    display: inline-flex;
}

/* Wrap da barra de busca — aparece centralizada abaixo dos filtros */
.ac-blog-v2_search-wrap {
    margin: -16px auto 28px;
    max-width: 540px;
    width: 100%;
}
.ac-blog-v2_search-wrap[hidden] { display: none !important; }
.ac-blog-v2_search-wrap.is-expanded {
    animation: ac-blog-search-down .28s ease;
}
@keyframes ac-blog-search-down {
    from { opacity: 0; transform: translateY(-8px); }
    to   { opacity: 1; transform: translateY(0);    }
}

.ac-blog-v2_search-inner {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
}

.ac-blog-v2_search {
    width: 100% !important;
    padding: 12px 44px 12px 20px !important;
    border: 1.5px solid #d1d5db !important;
    border-radius: 999px !important;
    font-size: 15px !important;
    color: #374151 !important;
    background: #fff !important;
    outline: none !important;
    margin: 0 !important;
    box-shadow: none !important;
    transition: border-color .2s, box-shadow .2s !important;
    appearance: none !important;
    -webkit-appearance: none !important;
}

/* Esconde os pseudo-elementos nativos de inputs type=search (caso o tema use search) */
.ac-blog-v2_search::-webkit-search-decoration,
.ac-blog-v2_search::-webkit-search-cancel-button,
.ac-blog-v2_search::-webkit-search-results-button,
.ac-blog-v2_search::-webkit-search-results-decoration {
    display: none !important;
    -webkit-appearance: none !important;
}

/* .ac-blog-v2_search:focus → border-color e box-shadow vêm do controle "Cor de destaque" no Elementor */

/* Lupa decorativa à direita do input */
.ac-blog-v2_search-icon {
    position: absolute;
    right: 16px;
    color: #9ca3af;
    pointer-events: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 0;
}
.ac-blog-v2_search-icon svg {
    width: 16px;
    height: 16px;
    display: block;
}

/* Paginação — visível quando populada */
.ac-blog-v2 .ac-blog_pagination {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 8px !important;
    margin-top: 28px !important;
}
.ac-blog-v2 .ac-blog_pagination[hidden],
.ac-blog-v2 .ac-blog_pagination:empty {
    display: none !important;
}

/* ===== Lojas Widget ===== */

.ac-lojas_grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.ac-lojas_card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 24px 20px 20px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.ac-lojas_icon {
    width: 52px;
    height: 52px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 6px;
    flex-shrink: 0;
    background-color: var(--ac-icon-bg, #f0fdf4) !important;
}

.ac-lojas_icon img {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

.ac-lojas_icon svg {
    opacity: .7;
}

.ac-lojas_name {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.3;
    margin: 0;
    color: var(--ac-name-color, #1a9e5c) !important;
}

.ac-lojas_subtitle {
    font-size: 13px;
    color: #6b7280;
    margin: 0;
}

.ac-lojas_locate {
    background: none !important;
    border: none;
    padding: 0;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 6px;
    text-align: left;
    transition: opacity .2s;
    color: var(--ac-locate-color, #1a9e5c) !important;
}

.ac-lojas_locate:hover {
    opacity: .7;
    color: var(--ac-locate-color, #1a9e5c) !important;
}

.ac-lojas_footer {
    display: flex;
    justify-content: center;
    margin-top: 28px;
}

.ac-lojas_btn-all {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #111827 !important;
    color: #fff !important;
    border: none;
    border-radius: 999px;
    padding: 12px 28px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity .2s;
}

.ac-lojas_btn-all:hover {
    opacity: .85;
    background: #111827 !important;
    color: #fff !important;
}

/* Modal */
body.ac-no-scroll {
    overflow: hidden;
}

.ac-lojas_modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 99999;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.ac-lojas_modal.is-open {
    display: flex;
}

.ac-lojas_modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.55);
}

.ac-lojas_modal-box {
    position: relative;
    background: #fff;
    border-radius: 16px;
    width: 100%;
    max-width: 720px;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,.25);
}

.ac-lojas_modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px 16px;
    border-bottom: 1px solid #f3f4f6;
    flex-shrink: 0;
}

.ac-lojas_modal-title-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
}

.ac-lojas_modal-pin {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f0fdf4;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a9e5c;
    flex-shrink: 0;
}

.ac-lojas_modal-title {
    font-size: 17px;
    font-weight: 700;
    color: #111827;
    margin: 0;
    line-height: 1.3;
}

.ac-lojas_modal-subtitle {
    font-size: 13px;
    color: #6b7280;
}

.ac-lojas_modal-close {
    background: none;
    border: none;
    cursor: pointer;
    color: #6b7280;
    padding: 4px;
    display: flex;
    border-radius: 6px;
    transition: background .2s;
}

.ac-lojas_modal-close:hover {
    background: #f3f4f6;
    color: #111827;
}

.ac-lojas_map-tabs {
    display: flex;
    gap: 8px;
    padding: 12px 24px;
    flex-wrap: wrap;
    flex-shrink: 0;
}

.ac-lojas_map-tab {
    padding: 6px 16px;
    border-radius: 999px;
    border: 1.5px solid #d1d5db;
    background: #fff;
    color: #374151;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: background .15s, color .15s, border-color .15s;
}

.ac-lojas_map-tab.active {
    background: #111827;
    border-color: #111827;
    color: #fff;
}

.ac-lojas_map-wrap {
    flex: 1;
    min-height: 0;
    position: relative;
}

.ac-lojas_map {
    width: 100%;
    height: 420px;
}

.ac-lojas_map-nokey {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f9fafb;
    color: #9ca3af;
    font-size: 14px;
    text-align: center;
    padding: 20px;
}

.ac-lojas_modal-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 24px;
    border-top: 1px solid #f3f4f6;
    flex-shrink: 0;
    gap: 12px;
}

.ac-lojas_map-hint {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #9ca3af;
}

.ac-lojas_btn-gmaps {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #1a9e5c !important;
    color: #fff !important;
    text-decoration: none;
    border-radius: 999px;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    transition: opacity .2s;
}

.ac-lojas_btn-gmaps:hover {
    opacity: .85;
    background: #1a9e5c !important;
    color: #fff !important;
}

@media (max-width: 900px) {
    .ac-lojas_grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 500px) {
    .ac-lojas_grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
    .ac-lojas_map {
        height: 300px;
    }
    .ac-lojas_modal-footer {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* ===== Números v2 (lista vertical) ===== */

.ac-numv2_wrap {
    width: 100%;
}

.ac-numv2_list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.ac-numv2_item {
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.ac-numv2_item.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.ac-numv2_divider {
    border: none;
    border-top: 2px solid #111;
    margin: 0;
}

.ac-numv2_value {
    display: block;
    font-size: 72px;
    font-weight: 800;
    line-height: 1;
    color: #111;
    letter-spacing: -0.02em;
    padding: 16px 0 4px;
    word-break: break-word;
}

.ac-numv2_label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #111;
    padding-bottom: 20px;
}

@media (max-width: 900px) {
    .ac-numv2_value { font-size: 60px; }
}

@media (max-width: 500px) {
    .ac-numv2_value { font-size: 52px; }
}

/* ===== Números / Estatísticas Widget ===== */

.ac-num_wrap {
    width: 100%;
}

.ac-num_grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.ac-num_card {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-style: solid;
    border-radius: 4px;
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.ac-num_label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #222;
    margin-bottom: 12px;
    line-height: 1.3;
}

.ac-num_value {
    font-size: 64px;
    font-weight: 800;
    line-height: 1;
    color: #111;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
    word-break: break-word;
}

.ac-num_desc {
    font-size: 14px;
    font-weight: 700;
    line-height: 1.55;
    color: #333;
    margin: 0;
}

/* Animação de entrada */
.ac-num_card {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.45s ease, transform 0.45s ease;
}

.ac-num_card.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 900px) {
    .ac-num_grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .ac-num_value {
        font-size: 52px;
    }
}

@media (max-width: 500px) {
    .ac-num_grid {
        grid-template-columns: 1fr;
    }
    .ac-num_value {
        font-size: 48px;
    }
}

/* ===== Título e Descrição Widget ===== */

.ac-tt_wrap {
    position: relative;
    width: 100%;
    display: inline-block;
}

.ac-tt_inner {
    position: relative;
    display: flex;
    flex-direction: column;
    z-index: 1;
}

.ac-tt_title {
    position: relative;
    margin: 0;
    line-height: 1.1;
    letter-spacing: 0.5px;
    display: inline-flex;
    flex-wrap: wrap;
    align-items: baseline;
}

.ac-tt_title--decor::before {
    content: '';
    position: absolute;
    left: -16px;
    bottom: 100%;
    width: 60px;
    height: 24px;
    background-image: url('../img/tt.png');
    background-repeat: no-repeat;
    background-position: left bottom;
    background-size: contain;
    margin-bottom: -4px;
    pointer-events: none;
}

.ac-tt_title-1 {
    font-weight: 400;
}

.ac-tt_title-2 {
    font-weight: 800;
}

.ac-tt--stacked .ac-tt_title {
    flex-direction: column;
    align-items: inherit;
}

.ac-tt_desc {
    margin: 0;
    line-height: 1.5;
    font-weight: 400;
}

/* Tamanho H1 (grande) */
.ac-tt--h1 .ac-tt_title {
    font-size: 60px;
}
.ac-tt--h1 .ac-tt_desc {
    font-size: 18px;
}
.ac-tt--h1 .ac-tt_title--decor::before {
    width: 92px;
    height: 34px;
}

/* Tamanho H2 (médio) */
.ac-tt--h2 .ac-tt_title {
    font-size: 30px;
}
.ac-tt--h2 .ac-tt_desc {
    font-size: 14px;
}
.ac-tt--h2 .ac-tt_title--decor::before {
    width: 52px;
    height: 20px;
}

@media (max-width: 900px) {
    .ac-tt--h1 .ac-tt_title { font-size: 46px; }
    .ac-tt--h1 .ac-tt_desc  { font-size: 16px; }
    .ac-tt--h1 .ac-tt_title--decor::before { width: 74px; height: 28px; }
    .ac-tt--h2 .ac-tt_title { font-size: 26px; }
    .ac-tt--h2 .ac-tt_desc  { font-size: 13px; }
    .ac-tt--h2 .ac-tt_title--decor::before { width: 44px; height: 18px; }
}

@media (max-width: 500px) {
    .ac-tt--h1 .ac-tt_title { font-size: 34px; }
    .ac-tt--h1 .ac-tt_desc  { font-size: 15px; }
    .ac-tt--h1 .ac-tt_title--decor::before { width: 58px; height: 22px; }
    .ac-tt--h2 .ac-tt_title { font-size: 22px; }
    .ac-tt--h2 .ac-tt_desc  { font-size: 13px; }
    .ac-tt--h2 .ac-tt_title--decor::before { width: 38px; height: 16px; }
}

/* ─── Lojas V2 ──────────────────────────────────────────────────────────── */
.ac-lojas2 {
    width: 100%;
}
.ac-lojas2_filter {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 14px;
}
.ac-lojas2_filter-btn,
.ac-lojas2_filter-btn:link,
.ac-lojas2_filter-btn:visited {
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    padding: 8px 16px !important;
    background: #fff !important;
    color: #495057 !important;
    border: 1px solid #dee2e6 !important;
    border-radius: 999px !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    line-height: 1.2 !important;
    cursor: pointer !important;
    transition: all .2s ease !important;
    box-shadow: none !important;
    text-decoration: none !important;
}

/* Botão "Todas" — sempre escuro quando ativo */
.ac-lojas2_filter-btn--all:hover,
.ac-lojas2_filter-btn--all:focus {
    background: #fff !important;
    color: #111827 !important;
    border-color: #111827 !important;
}
.ac-lojas2_filter-btn--all.active,
.ac-lojas2_filter-btn--all.active:hover,
.ac-lojas2_filter-btn--all.active:focus {
    background: #111827 !important;
    color: #fff !important;
    border-color: #111827 !important;
}

/* Botões de marca — usam --ac-brand definido inline */
.ac-lojas2_filter-btn[data-marca]:not([data-marca=""]):hover,
.ac-lojas2_filter-btn[data-marca]:not([data-marca=""]):focus {
    background: #fff !important;
    color: var(--ac-brand) !important;
    border-color: var(--ac-brand) !important;
}
.ac-lojas2_filter-btn[data-marca]:not([data-marca=""]).active,
.ac-lojas2_filter-btn[data-marca]:not([data-marca=""]).active:hover,
.ac-lojas2_filter-btn[data-marca]:not([data-marca=""]).active:focus {
    background: var(--ac-brand) !important;
    color: #fff !important;
    border-color: var(--ac-brand) !important;
}
.ac-lojas2_filter-btn[data-marca]:not([data-marca=""]).active .ac-lojas2_filter-dot {
    background: #fff !important;
}

.ac-lojas2_filter-dot {
    width: 10px !important;
    height: 10px !important;
    border-radius: 50% !important;
    display: inline-block !important;
    background: var(--ac-brand, #9ca3af) !important;
    flex-shrink: 0 !important;
}
.ac-lojas2_map-wrap {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,.06);
}
.ac-lojas2_map {
    width: 100%;
    height: 600px;
    background: #f3f4f6;
}
.ac-lojas2_overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 24px;
    background: rgba(243,244,246,.96);
    color: #495057;
    font-size: 14px;
    line-height: 1.5;
}
.ac-lojas2_overlay code {
    background: #fff;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 12px;
}

/* InfoWindow — overrides do Google Maps pra evitar scroll e padding extra */
.gm-style .gm-style-iw-c {
    padding: 0 !important;
    border-radius: 10px !important;
    overflow: hidden !important;
    box-shadow: 0 8px 24px rgba(0,0,0,.18) !important;
}
.gm-style .gm-style-iw-d {
    overflow: visible !important;
    max-height: none !important;
}
.gm-style .gm-style-iw-chr {
    position: absolute;
    top: 4px;
    right: 4px;
    z-index: 2;
}

/* InfoWindow content */
.ac-lojas2_iw {
    width: min(340px, calc(100vw - 56px));
    font-family: inherit;
    font-size: 13px;
    color: #1f2937;
}

/* Neutraliza scroll/limites internos do Google Maps quando contém nosso IW */
.gm-style:has(.ac-lojas2_iw) .gm-style-iw,
.gm-style:has(.ac-lojas2_iw) .gm-style-iw-c {
    max-width: calc(100vw - 32px) !important;
    max-height: none !important;
    padding: 0 !important;
    overflow: visible !important;
}
.gm-style:has(.ac-lojas2_iw) .gm-style-iw-d {
    overflow: visible !important;
    max-width: none !important;
    max-height: none !important;
}
/* Espaço para o botão "X" da Maps não sobrepor o conteúdo */
.gm-style:has(.ac-lojas2_iw) .gm-style-iw-chr {
    height: 0 !important;
}

.ac-lojas2_iw-photo {
    width: 100%;
    height: 110px;
    background-size: cover;
    background-position: center;
    background-color: #e9ecef;
    position: relative;
}
.ac-lojas2_iw-photo::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom left, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0) 55%);
    pointer-events: none;
}

/* Botão de fechar — branco quando houver foto (gradiente atrás) */
.gm-style:has(.ac-lojas2_iw-photo) .gm-ui-hover-effect > span,
.gm-style:has(.ac-lojas2_iw-photo) .gm-style-iw-chr button > span,
.gm-style:has(.ac-lojas2_iw-photo) .gm-style-iw-chr button > img {
    filter: brightness(0) invert(1) drop-shadow(0 1px 2px rgba(0,0,0,.4)) !important;
    opacity: 1 !important;
}
.gm-style:has(.ac-lojas2_iw-photo) .gm-ui-hover-effect:hover > span {
    opacity: .85 !important;
}
.ac-lojas2_iw-body {
    padding: 12px 14px 14px;
}
.ac-lojas2_iw-brand {
    display: inline-block;
    font-size: 10.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    margin-bottom: 4px;
}
.ac-lojas2_iw-title {
    margin: 0 0 8px;
    font-size: 16px;
    font-weight: 700;
    color: #111827;
    line-height: 1.25;
}
.ac-lojas2_iw-row {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 6px;
    font-size: 12.5px;
    color: #495057;
    line-height: 1.4;
}
.ac-lojas2_iw-row svg {
    flex-shrink: 0;
    margin-top: 2px;
    color: #9ca3af;
}

/* Status aberto/fechado */
.ac-lojas2_iw-status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12.5px;
    font-weight: 600;
    color: #495057;
}
.ac-lojas2_iw-status .ac-lojas2_iw-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #9ca3af;
    flex-shrink: 0;
}
.ac-lojas2_iw-status.is-open       { color: #047857; }
.ac-lojas2_iw-status.is-open  .ac-lojas2_iw-dot { background: #10b981; box-shadow: 0 0 0 3px rgba(16,185,129,.18); }
.ac-lojas2_iw-status.is-closed     { color: #b91c1c; }
.ac-lojas2_iw-status.is-closed .ac-lojas2_iw-dot { background: #ef4444; box-shadow: 0 0 0 3px rgba(239,68,68,.18); }

/* Disclosure dos horários */
.ac-lojas2_iw-hours,
.ac-lojas2_iw-hours-static {
    margin-top: 4px;
    margin-bottom: 4px;
    border-top: 1px solid #f1f3f5;
    padding-top: 8px;
}
.ac-lojas2_iw-hours summary {
    list-style: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 2px 0;
    user-select: none;
}
.ac-lojas2_iw-hours summary::-webkit-details-marker { display: none; }
.ac-lojas2_iw-hours summary::marker { display: none; content: ''; }
.ac-lojas2_iw-chevron {
    color: #9ca3af;
    transition: transform .2s ease;
    flex-shrink: 0;
}
.ac-lojas2_iw-hours[open] .ac-lojas2_iw-chevron {
    transform: rotate(180deg);
}
.ac-lojas2_iw-week {
    margin-top: 8px;
    background: #f9fafb;
    border-radius: 6px;
    padding: 8px 10px;
    font-size: 12px;
}
.ac-lojas2_iw-day {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 3px 0;
    color: #6b7280;
    text-transform: capitalize;
}
.ac-lojas2_iw-day.is-today {
    color: #111827;
    font-weight: 600;
}
.ac-lojas2_iw-day span:last-child {
    color: #374151;
    font-variant-numeric: tabular-nums;
}

/* CTA — fundo dinâmico via --ac-brand (cor da marca) */
.ac-lojas2_iw-cta,
.ac-lojas2_iw-cta:link,
.ac-lojas2_iw-cta:visited {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 6px !important;
    margin-top: 12px !important;
    padding: 9px 14px !important;
    background: var(--ac-brand, #1a9e5c) !important;
    color: #fff !important;
    border-radius: 6px !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    transition: filter .2s ease !important;
    box-shadow: none !important;
}
.ac-lojas2_iw-cta:hover,
.ac-lojas2_iw-cta:focus {
    background: var(--ac-brand, #1a9e5c) !important;
    color: #fff !important;
    filter: brightness(1.12) !important;
}

/* Mobile — popup mais largo proporcionalmente, padding mais enxuto */
@media (max-width: 600px) {
    .ac-lojas2_iw {
        width: min(340px, calc(100vw - 40px));
        font-size: 12.5px;
    }
    .ac-lojas2_iw-photo {
        height: 96px;
    }
    .ac-lojas2_iw-body {
        padding: 10px 12px 12px;
    }
    .ac-lojas2_iw-title {
        font-size: 15px;
        margin-bottom: 6px;
    }
    .ac-lojas2_iw-row {
        font-size: 12px;
        margin-bottom: 5px;
    }
    .ac-lojas2_iw-brand {
        font-size: 10px;
        margin-bottom: 2px;
    }
    .ac-lojas2_iw-status {
        font-size: 12px;
    }
    .ac-lojas2_iw-week {
        padding: 7px 9px;
        font-size: 11.5px;
    }
    .ac-lojas2_iw-cta {
        margin-top: 10px !important;
        padding: 10px 12px !important;
        font-size: 12.5px !important;
    }
}

/* ===== Blocos Interativos ===== */

.ac-doisb {
    --ac-doisb-h: 320px;
    --ac-doisb-gap: 18px;
    --ac-doisb-max-h: 540px;
    --ac-doisb-ease: cubic-bezier(.7, 0, .2, 1);
    --ac-doisb-dur: 650ms;

    display: flex;
    flex-direction: column;
    gap: var(--ac-doisb-gap);
    width: 100%;
    position: relative;
    isolation: isolate;
}

/* Linha de blocos — número de colunas vem do --cols inline */
.ac-doisb_row {
    --cols: 2;
    display: flex;
    gap: var(--ac-doisb-gap);
    width: 100%;
    /* Cards aproximadamente quadrados via aspect-ratio da linha */
    aspect-ratio: calc(var(--cols)) / 1;
    max-height: var(--ac-doisb-max-h);
    min-height: 220px;
    transition: gap var(--ac-doisb-dur) var(--ac-doisb-ease);
}

.ac-doisb_card {
    --ac-doisb-bg: #002e5d;
    flex: 0 1 calc((100% - var(--ac-doisb-gap) * (var(--cols) - 1)) / var(--cols));
    min-width: 0;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    background: var(--ac-doisb-bg);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
    transition: flex-basis var(--ac-doisb-dur) var(--ac-doisb-ease),
                box-shadow .35s ease;
    will-change: flex-basis;
    transform: translateZ(0);
}

.ac-doisb_card:hover,
.ac-doisb_card:focus-within,
.ac-doisb_card:target {
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.16) !important;
}

/* Card aberto dentro da linha → ocupa 100%, outros somem */
.ac-doisb_row:has(.ac-doisb_card.is-open) {
    gap: 0;
}

.ac-doisb_card.is-open {
    flex-basis: 100%;
    cursor: default;
    min-height: 320px;
}

.ac-doisb_row:has(.ac-doisb_card.is-open) .ac-doisb_card:not(.is-open) {
    flex-basis: 0;
    box-shadow: none;
}

.ac-doisb_row:has(.ac-doisb_card.is-open) .ac-doisb_card:not(.is-open) .ac-doisb_image {
    filter: brightness(.7) !important;
}

/* Trigger — cobre o card no estado fechado (apenas a imagem) */
.ac-doisb_trigger,
.ac-doisb_trigger:hover,
.ac-doisb_trigger:focus,
.ac-doisb_trigger:focus-visible,
.ac-doisb_trigger:active,
.ac-doisb_trigger:target {
    appearance: none !important;
    -webkit-appearance: none !important;
    background: transparent !important;
    background-color: transparent !important;
    border: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    box-shadow: none !important;
    text-decoration: none !important;
    color: inherit !important;
    outline: none !important;
}

.ac-doisb_trigger {
    width: 100%;
    height: 100%;
    cursor: pointer;
    display: block;
    font: inherit;
    text-align: left;
    position: relative;
    z-index: 1;
    transition: opacity var(--ac-doisb-dur) var(--ac-doisb-ease);
}

.ac-doisb_trigger:focus-visible {
    box-shadow: inset 0 0 0 3px rgba(255,255,255,.55) !important;
}

.ac-doisb_card.is-open .ac-doisb_trigger {
    opacity: 0;
    pointer-events: none;
}

.ac-doisb_image-wrap {
    width: 100% !important;
    height: 100% !important;
    position: relative !important;
    overflow: hidden !important;
    padding: 0 !important;
    margin: 0 !important;
    display: block !important;
}

.ac-doisb_image {
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    max-height: none !important;
    object-fit: cover !important;
    object-position: center !important;
    display: block !important;
    padding: 0 !important;
    margin: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    transform: scale(1.02);
    transition: transform 1.1s var(--ac-doisb-ease), filter .5s ease;
    will-change: transform;
}

.ac-doisb_card:hover .ac-doisb_image,
.ac-doisb_card:focus-within .ac-doisb_image,
.ac-doisb_card:target .ac-doisb_image {
    transform: scale(1.08) !important;
}

/* Overlay sutil: escurece o rodapé pra contraste + insere a cor da marca no fim */
.ac-doisb_overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, transparent 45%, rgba(0, 0, 0, .55) 100%),
        linear-gradient(180deg, transparent 75%, var(--ac-doisb-bg) 130%);
    pointer-events: none;
    transition: opacity .35s ease;
    z-index: 1;
}

.ac-doisb_card:hover .ac-doisb_overlay,
.ac-doisb_card:focus-within .ac-doisb_overlay {
    opacity: 1;
}

/* Título + CTA sobre a imagem (estado fechado) */
.ac-doisb_label {
    position: absolute;
    left: clamp(20px, 2.2vw, 32px);
    right: clamp(20px, 2.2vw, 32px);
    bottom: clamp(20px, 2.2vw, 30px);
    z-index: 2;
    color: #fff;
    display: flex;
    flex-direction: column;
    gap: 8px;
    pointer-events: none;
    transition: transform .45s var(--ac-doisb-ease), opacity .3s ease;
}

.ac-doisb_card:hover .ac-doisb_label,
.ac-doisb_card:focus-within .ac-doisb_label {
    transform: translateY(-4px);
}

.ac-doisb_label-name {
    font-size: clamp(20px, 2.1vw, 32px);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -0.01em;
    text-shadow: 0 2px 14px rgba(0, 0, 0, .35);
}

.ac-doisb_label-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: clamp(12px, 1vw, 14px);
    font-weight: 600;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    opacity: 0.95;
    text-shadow: 0 2px 12px rgba(0, 0, 0, .35);
}

.ac-doisb_label-cta svg {
    transition: transform .35s var(--ac-doisb-ease);
}

.ac-doisb_card:hover .ac-doisb_label-cta svg,
.ac-doisb_card:focus-within .ac-doisb_label-cta svg {
    transform: translateX(6px);
}

/* Painel expandido */
.ac-doisb_panel {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: var(--ac-doisb-bg);
    z-index: 2;
    opacity: 0;
    pointer-events: none;
    transition: opacity .35s ease;
}

.ac-doisb_card.is-open .ac-doisb_panel {
    opacity: 1;
    pointer-events: auto;
    transition: opacity .45s ease .15s;
}

.ac-doisb_panel-image {
    overflow: hidden !important;
    position: relative !important;
    background: rgba(0,0,0,0.18);
    padding: 0 !important;
    margin: 0 !important;
    min-width: 0;
    min-height: 0;
    transform: translateX(-24px);
    opacity: 0;
    transition: transform .65s var(--ac-doisb-ease) .1s,
                opacity .4s ease .1s;
}

.ac-doisb_card.is-open .ac-doisb_panel-image {
    transform: translateX(0);
    opacity: 1;
}

.ac-doisb_panel-image img {
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    max-height: none !important;
    object-fit: cover !important;
    object-position: center !important;
    display: block !important;
    padding: 0 !important;
    margin: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    transform: scale(1.05);
    transition: transform 1.4s var(--ac-doisb-ease);
}

.ac-doisb_card.is-open .ac-doisb_panel-image img {
    transform: scale(1);
}

.ac-doisb_panel-content {
    padding: clamp(16px, 1.8vw, 28px) clamp(16px, 1.8vw, 26px) clamp(16px, 1.8vw, 28px) clamp(14px, 1.4vw, 22px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #fff;
    min-width: 0;
    transform: translateX(28px);
    opacity: 0;
    transition: transform .65s var(--ac-doisb-ease) .15s,
                opacity .4s ease .15s;
}

.ac-doisb_card.is-open .ac-doisb_panel-content {
    transform: translateX(0);
    opacity: 1;
}

.ac-doisb_title {
    font-size: clamp(20px, 2.2vw, 32px);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.015em;
    margin-bottom: 14px;
    margin-top: 0px !important;
}

.ac-doisb_title::after {
    content: "";
    display: block;
    width: 40px;
    height: 3px;
    background: currentColor;
    opacity: 0.6;
    border-radius: 3px;
    margin-top: 12px;
}

.ac-doisb_text,
.ac-doisb_text p {
    font-size: clamp(13px, 1vw, 15px);
    line-height: 1.3;
    opacity: 0.95;
}

.ac-doisb_text p + p {
    margin-top: 10px;
}

/* Botão fechar — base */
.ac-doisb_close {
    appearance: none !important;
    -webkit-appearance: none !important;
    position: absolute;
    top: 14px;
    right: 14px;
    width: 46px !important;
    height: 46px !important;
    min-width: 46px !important;
    min-height: 46px !important;
    border-radius: 50% !important;
    background: #ffffff !important;
    background-color: #ffffff !important;
    border: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    color: var(--ac-doisb-bg) !important;
    font: inherit;
    cursor: pointer !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    z-index: 3;
    opacity: 0;
    transform: scale(0.6) rotate(-90deg);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.22) !important;
    text-shadow: none !important;
    text-decoration: none !important;
    line-height: 1 !important;
    transition: opacity .35s ease,
                transform .45s var(--ac-doisb-ease),
                box-shadow .25s ease,
                background-color .25s ease;
}

.ac-doisb_close svg {
    width: 18px;
    height: 18px;
    display: block;
    pointer-events: none;
    stroke: currentColor;
}

.ac-doisb_card.is-open .ac-doisb_close {
    opacity: 1;
    transform: scale(1) rotate(0);
    transition-delay: .35s, .35s, 0s, 0s;
}

/* Estados interativos — !important para vencer overrides do Elementor */
.ac-doisb_close:hover,
.ac-doisb_close:focus,
.ac-doisb_close:focus-visible,
.ac-doisb_close:active,
.ac-doisb_close:target {
    background: #ffffff !important;
    background-color: #ffffff !important;
    color: var(--ac-doisb-bg) !important;
    border: 0 !important;
    outline: none !important;
    text-decoration: none !important;
    box-shadow: 0 6px 22px rgba(0, 0, 0, 0.32) !important;
}

.ac-doisb_card.is-open .ac-doisb_close:hover,
.ac-doisb_card.is-open .ac-doisb_close:focus,
.ac-doisb_card.is-open .ac-doisb_close:focus-visible {
    transform: scale(1.08) rotate(0) !important;
}

.ac-doisb_card.is-open .ac-doisb_close:active {
    transform: scale(0.94) rotate(0) !important;
}

.ac-doisb_close:focus-visible {
    box-shadow: 0 6px 22px rgba(0, 0, 0, 0.32),
                0 0 0 3px rgba(255, 255, 255, 0.55) !important;
}

/* Tablet — ajustes finos */
@media (max-width: 1024px) and (min-width: 721px) {
    .ac-doisb_panel-content {
        padding: 24px 22px;
    }
    .ac-doisb_title::after {
        margin-top: 10px;
    }
    .ac-doisb_row {
        max-height: 420px;
    }
}

/* Mobile — todos os cards stackeam em uma coluna; abrir um esconde todos os outros */
@media (max-width: 720px) {
    .ac-doisb_row {
        display: contents;
    }

    .ac-doisb_card {
        flex: 0 0 auto;
        width: 100%;
        height: var(--ac-doisb-h);
        max-height: var(--ac-doisb-h);
        min-height: 0;
        flex-basis: auto !important;
        transition: max-height var(--ac-doisb-dur) var(--ac-doisb-ease),
                    height var(--ac-doisb-dur) var(--ac-doisb-ease),
                    margin-top var(--ac-doisb-dur) var(--ac-doisb-ease),
                    opacity .35s ease,
                    box-shadow .35s ease;
    }

    /* Card aberto cresce em altura */
    .ac-doisb_card.is-open {
        height: auto;
        max-height: 1400px;
        min-height: 0;
    }

    /* Qualquer card NÃO aberto enquanto há um aberto no widget → colapsa */
    .ac-doisb:has(.ac-doisb_card.is-open) .ac-doisb_card:not(.is-open) {
        height: 0;
        max-height: 0;
        opacity: 0;
        margin-top: calc(var(--ac-doisb-gap) * -1);
        pointer-events: none;
    }

    /* Trigger sai do fluxo para não empilhar com o painel */
    .ac-doisb_trigger {
        position: absolute;
        inset: 0;
    }

    /* Quando aberto, painel domina o layout do card */
    .ac-doisb_card.is-open .ac-doisb_panel {
        position: relative;
        inset: auto;
        height: auto;
    }

    .ac-doisb_panel {
        grid-template-columns: 1fr;
        grid-template-rows: 240px auto;
    }

    .ac-doisb_panel-image {
        transform: translate(0, -16px);
    }
    .ac-doisb_card.is-open .ac-doisb_panel-image {
        transform: translate(0, 0);
    }
    .ac-doisb_panel-content {
        padding: 26px 22px 32px;
        transform: translate(0, 16px);
    }
    .ac-doisb_card.is-open .ac-doisb_panel-content {
        transform: translate(0, 0);
    }

    .ac-doisb_close {
        top: 12px !important;
        right: 12px !important;
        width: 42px !important;
        height: 42px !important;
        min-width: 42px !important;
        min-height: 42px !important;
    }
    .ac-doisb_close svg {
        width: 16px;
        height: 16px;
    }
}

/* Movimento reduzido */
@media (prefers-reduced-motion: reduce) {
    .ac-doisb,
    .ac-doisb * {
        transition-duration: .15s !important;
        animation-duration: .15s !important;
    }
    .ac-doisb_image,
    .ac-doisb_card:hover .ac-doisb_image,
    .ac-doisb_panel-image img,
    .ac-doisb_card.is-open .ac-doisb_panel-image img {
        transform: none;
    }
}
