/*
Theme Name:   Frost Child
Theme URI:    https://wpfrost.com/
Description:  Frost Child Theme.
Author:       Bill Minozzi
Author URI:   https://siterightaway.net
Template:     frost
Version:      1.0.0
Text Domain:  frost-child
*/


/* -- Bill -- */







/* Força a barra no site vivo e no editor */
html body .wp-block-image.techbenders-is-style-floating-image {
    margin-top: -20px !important;
    position: relative !important;
    z-index: 99 !important;
    display: block !important;
}

.techbenders-teu-grupo-customizado {
    width: 100%;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.techbenders-sombra-cinza {
    /* box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2) !important; */
    /* box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25) !important; */
}

.techbenders-top-menu {
    max-height: 45px !important;
    overflow: hidden;
}

/* APENAS ALTURA E CENTRALIZAÇÃO DO HEADER */
.site-header22 {
    min-height: 120px !important;
    height: 120px !important;
    /* display: flex !important;
    align-items: center !important; */
    padding-bottom: 20px;

}

/* APENAS ALTURA DO SEGUNDO HEADER */
.wp-block-group.alignfull.has-base-background-color22 {
    min-height: 100px !important;
    height: 100px !important;
    border-bottom: 0px !important;

}

/* Contentor Pai (O Bloco de Colunas) */
/* Classe para aplicar em cada um dos 4 blocos de Grupo */
.techbenders-box-fix {
    display: flex !important;
    flex-direction: column !important;
    height: 100% !important;
    min-height: 250px !important;
    /* Ajusta este valor para a altura mínima que desejas */
    flex-grow: 1 !important;
    margin-bottom: 0 !important;
}

.techbenders-box-fix2 {
    display: flex !important;
    flex-direction: column !important;
    height: 100% !important;
    min-height: 100px !important;
    /* Ajusta este valor para a altura mínima que desejas */
    flex-grow: 1 !important;
    margin-bottom: 0 !important;
}

/* Ajuste no contentor das colunas para remover o espaço extra */
.wp-block-columns {
    gap: 10px !important;
    /* Ajusta aqui o espaço entre as colunas e as rows */
}

.wp-block-column {
    display: flex !important;
    flex-direction: column !important;
    gap: 10px !important;
    /* Espaço vertical entre as duas boxes da mesma coluna */
}

/* Seletor específico para a tua coluna Techbenders */
.techbenders.coluna-centralizada {
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    /* Alinha ao meio verticalmente */
    height: 100% !important;
    min-height: 150px;
}

/* Opcional: Garante que os parágrafos dentro desta coluna específica fiquem centrados */
.techbenders.coluna-centralizada p {
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

/* Ajuste de Precisão para o Pattern Techbenders */
.techbenders.pattern-fix-old .wp-block-media-text__media {
    width: 70px !important;
    /* Força a largura exata que desejas */
    flex-basis: 70px !important;
    max-width: 70px !important;
    /* Impede que cresça no Live Site */
    min-width: 70px !important;
    /* Impede que encolha */
}

.techbenders.pattern-fix-old .wp-block-media-text__content {
    flex-basis: calc(100% - 90px) !important;
    /* Ocupa o resto (70px + 20px de margem) */
    padding-left: 20px !important;
    /* Dá um respiro entre a imagem e o texto */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Garante que a imagem interna respeite os 70px */
.techbenders.pattern-fix-old img {
    width: 70px !important;
    height: auto !important;
    object-fit: contain !important;
}

/* Garante que a imagem propriamente dita não saia do contentor */
.techbenders.pattern-fix-old img {
    width: 100% !important;
    height: auto !important;
    object-fit: contain !important;
    /* Mantém a proporção sem cortar */
}

.techbenders.pattern-fix .wp-block-media-text__content {
    /* Força a coluna a esticar e ocupar todo o espaço restante */
    flex-grow: 1 !important;
    flex-basis: 0 !important;
    min-width: 0 !important;

    /* Mantém o alinhamento e respiro */
    padding-left: 20px !important;
    display: flex;
    flex-direction: column;
    justify-content: center;

    /* Garante que o texto dentro comece sempre à esquerda */
    text-align: left !important;
}

/* Forçar o contentor pai a não criar espaços laterais */
.techbenders.pattern-fix {
    justify-content: flex-start !important;
    width: 100% !important;
}

/* Garante que em telemóveis a imagem não fique esmagada */
@media (max-width: 600px) {
    .techbenders.pattern-fix {
        display: block !important;
    }

    .techbenders.pattern-fix .wp-block-media-text__media,
    .techbenders.pattern-fix .wp-block-media-text__content {
        width: 100% !important;
        flex-basis: 100% !important;
    }
}

.techbenders-destaque-azul {
    color: #0073aa !important;
    text-transform: uppercase !important;
    letter-spacing: 0.15em !important;
    font-weight: 700 !important;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    /* Espaço entre a linha e o texto */
}

/* Cria a linha antes */
.techbenders-destaque-azul::before,
.techbenders-destaque-azul::after {
    content: "";
    flex-grow: 0;
    width: 30px;
    /* Comprimento da "linha de hífens" */
    height: 2px;
    /* Grossura da linha */
    background-color: currentColor;
    /* Usa a mesma cor do texto */
}


/* CORREÇÃO DEFINITIVA: Impede a margem fantasma no Media & Text */
.techbenders.pattern-fix,
.techbenders-box-fix2 .wp-block-media-text {
    display: grid !important;
    /* Força 70px para a imagem e o resto (1fr) para o texto, eliminando o 'auto' */
    grid-template-columns: 70px 1fr !important;
    width: 100% !important;
    max-width: none !important;
}

.techbenders.pattern-fix .wp-block-media-text__content,
.techbenders-box-fix2 .wp-block-media-text__content {
    /* Garante que o contentor do texto preencha toda a largura da sua coluna */
    width: 100% !important;
    flex-grow: 1 !important;
    margin-left: 0 !important;
}

/* Remove margens automáticas de alinhamento do Gutenberg */
.wp-block-group.is-layout-constrained.techbenders-box-fix2>* {
    margin-left: 0 !important;
    margin-right: 0 !important;
}






.techbender-top-header {
    position: relative !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    margin: 0 !important;
    padding: 0 !important;
}












/* cloude 27 */
.za-item {
    border-bottom: 1px solid #E5E7EB;
    transition: background .2s;
}

/*
.za-item:hover {
    background: #EBF1FA !important;
}
*/

.za-label-line {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.za-label-line::before,
.za-label-line::after {
    content: '';
    display: block;
    width: 36px;
    height: 1px;
    background: #9CA3AF;
}


/* apagar o aaixo */
/* Remove bordas, sombras e outlines automáticos dos grupos Techbenders */
.wp-block-group1,
.techbenders-box-fix1,
.techbenders-box-fix21,
.techbenders-pattern-container1 {
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    padding: 0;
    /* Opcional: remove espaços internos automáticos */
}

/* Se o problema for uma linha de foco no editor ou uma borda de layout */
.wp-block-group:where1(.is-layout-constrained) {
    border: none !important;
}






/* Limpeza Radical do Grupo Pai */
.wp-block-group.techbenders-pattern-wrapper,
.techbenders-pattern-wrapper:where(.is-layout-constrained),
.techbenders-pattern-wrapper:where(.is-layout-flow) {
    max-width: 800px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    width: 100% !important;

    /* Remove qualquer tipo de linha ou contorno */
    border: 0px none transparent !important;
    outline: 0px none transparent !important;
    box-shadow: none !important;

    /* Remove sombras "fantasma" que aparecem em alguns temas (preset) */
    filter: none !important;

    /* Garante fundo transparente */
    background: transparent !important;
    background-color: transparent !important;

    /* Zera espaçamentos que criam a ilusão de bordas */
    padding: 0 !important;
    column-gap: 0 !important;
}

/* Ataca a borda se ela estiver no "Inner Container" (comum em temas clássicos) */
.techbenders-pattern-wrapper>.wp-block-group__inner-container,
.techbenders-pattern-wrapper>div {
    border: none !important;
    box-shadow: none !important;
    outline: none !important;
    padding: 0 !important;
}

/* Remove a margem superior do primeiro bloco interno que causa 'sujeira' visual */
.techbenders-pattern-wrapper>*:first-child {
    margin-top: 0 !important;
}










/* ── TECHBENDERS CUSTOM NAVIGATION ────────────────────────── */

/* 1. Estilo base dos itens do menu */
.wp-block-navigation .wp-block-navigation-item a {
    padding: 8px 16px !important;
    border-radius: 6px !important;
    transition: all 0.3s ease-in-out !important;
    text-decoration: none !important;
    display: inline-flex !important;
    align-items: center;
}

/* 2. Efeito HOVER (Passar o rato) */
.wp-block-navigation .wp-block-navigation-item a:hover {
    background-color: #f0f4f8 !important;
    /* Cor suave de fundo no hover */
    color: #285fae !important;
    /* Usa o teu azul za-blue */
    transform: translateY(-1px);
    /* Pequena elevação */
}

/* 3. Estilo para o item ATIVO (Página atual) */
.wp-block-navigation .wp-block-navigation-item.current-menu-item a,
.wp-block-navigation .wp-block-navigation-item.current-menu-ancestor a {
    font-weight: 700 !important;
    color: #285fae !important;
}

/* 4. Ajuste para Submenus (Dropdown) */
.wp-block-navigation:not(.has-background) .wp-block-navigation__submenu-container {
    border-radius: 8px !important;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1) !important;
    border: 1px solid #E5E7EB !important;
    padding: 10px !important;
}


/* REDUZIR FONTE DO SUBMENU (DROPDOWN) */
.wp-block-navigation__submenu-container .wp-block-navigation-item a,
.wp-block-navigation__submenu-container .wp-block-navigation-item__content {
    font-size: 14px !important;
    /* Ajuste este valor conforme desejar */
}




/* 5. Menu Mobile (Hambúrguer) */
.wp-block-navigation__responsive-container-open {
    border-radius: 4px !important;
    padding: 4px !important;
}

/* 6. Corrige fundo do submenu (remove preto) */
.wp-block-navigation__submenu-container {
    background-color: #ffffff !important;
}

/* 7. Cor do texto no submenu (garante visibilidade) */
.wp-block-navigation__submenu-container .wp-block-navigation-item a {
    color: #285fae !important;
    /* seu azul */
    background-color: transparent !important;
}

/* 8. Hover nos submenus */
.wp-block-navigation__submenu-container .wp-block-navigation-item a:hover {
    background-color: #f0f4f8 !important;
    color: #285fae !important;
    transform: translateY(-1px);
}



/* FORÇA O MENU HAMBÚRGUER À ESQUERDA */
/*
.wp-block-navigation__responsive-container.is-menu-open {
    position: fixed !important;
    left: 0 !important;
    right: auto !important;
    top: 0 !important;
    width: 80% !important;
    max-width: 300px !important;
    transform: none !important;
}

.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content {
    align-items: flex-start !important;
    text-align: left !important;
}

.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__container {
    margin-left: 0 !important;
    margin-right: auto !important;
}
*/


/* ALINHA O MENU HAMBÚRGUER À DIREITA */
.wp-block-navigation__responsive-container.is-menu-open {
    position: fixed !important;
    right: 0 !important;
    left: auto !important;
    top: 0 !important;
    width: 80% !important;
    max-width: 300px !important;
    transform: none !important;
}

.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content {
    align-items: flex-end !important;
    /* ← ALINHA À DIREITA */
    text-align: right !important;
    /* ← TEXTO À DIREITA */
}

.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__container {
    margin-left: auto !important;
    /* ← EMPURRA PARA DIREITA */
    margin-right: 0 !important;
}




/* FORÇAR VISIBILIDADE DO ÍCONE 3 RISCAS (HAMBÚRGUER) */

/* AJUSTE PARA O ÍCONE DE 3 RISCAS (SEM FUNDIR) */

/* 1. COR E VISIBILIDADE DO BOTÃO */
.wp-block-navigation__responsive-container-open {
    color: #285fae !important;
    /* Teu azul */
    display: flex !important;
    opacity: 1 !important;
    border: none !important;
    padding: 0 !important;
    /* Evita que o preenchimento esmague o ícone */
}

/* 2. AJUSTE DO DESENHO (SVG) */
.wp-block-navigation__responsive-container-open svg {
    width: 28px !important;
    /* Tamanho ligeiramente maior para respirar */
    height: 28px !important;
    fill: currentColor !important;
    stroke: none !important;
    /* IMPORTANTE: Remove o contorno que funde as linhas */
    overflow: visible !important;
    /* Garante que nenhuma linha é cortada fora da caixa */
}

/* 3. ALVO DIRETO NAS RISCAS INTERNAS */
.wp-block-navigation__responsive-container-open svg path,
.wp-block-navigation__responsive-container-open svg rect {
    fill: #285fae !important;
    stroke-width: 0 !important;
    /* Força a espessura zero no contorno */
}

/* CLASSE PARA COLUNAS COM LARGURA MÁXIMA DE 150px */

/* FORÇA OS ÍCONES SOCIAIS PARA A DIREITA */
.techbenders-col-small {
    margin-top: -40px;
    display: flex !important;
    justify-content: flex-end !important;
    margin-left: auto !important;
    margin-right: 0 !important;
    float: right !important;
}

.techbenders-col-small .wp-block-column {
    width: auto !important;
    flex-basis: auto !important;
}


/* NO MOBILE: LOGO E MENU COM 50% CADA */
@media (max-width: 768px) {

    /* Força as colunas do header (logo e menu) a terem 50% cada */
    .wp-block-columns.alignfull.is-not-stacked-on-mobile {
        display: flex !important;
        flex-direction: row !important;
        justify-content: space-between !important;
    }

    /* Coluna do logo - 50% */
    .wp-block-columns.alignfull.is-not-stacked-on-mobile .wp-block-column:first-child {
        flex-basis: 50% !important;
        width: 50% !important;
        max-width: 50% !important;
        display: flex !important;
        align-items: center !important;
    }

    /* Coluna do menu - 50% */
    .wp-block-columns.alignfull.is-not-stacked-on-mobile .wp-block-column:nth-child(2) {
        flex-basis: 50% !important;
        width: 50% !important;
        max-width: 50% !important;
    }

    /* Esconde a coluna da lupa no mobile (opcional, se não couber) */
    .wp-block-columns.alignfull.is-not-stacked-on-mobile .wp-block-column:last-child {
        display: none !important;
    }
}

/*====================== ==================*/


/* ============================================================
   BLOCO 6 — GETTING STARTED
   ============================================================ */

/* Label com linhas decorativas */
.gs-label-line {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
}

.gs-label-line::before,
.gs-label-line::after {
    content: '' !important;
    display: block !important;
    width: 36px !important;
    height: 1px !important;
    background: #7a5c00 !important;
}

/* Card */
.gs-card {
    background: #ffffff !important;
    border-radius: 16px !important;
    padding: 40px 28px 28px 28px !important;
    position: relative !important;
    margin-top: 24px !important;
    gap: 0 !important;
    height: 100% !important;
    min-height: 260px !important;
}

/* Círculo com número */
.gs-number {
    position: absolute !important;
    top: -24px !important;
    left: 28px !important;
    width: 48px !important;
    height: 48px !important;
    background: #111827 !important;
    color: #ffffff !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 18px !important;
    font-weight: 700 !important;
    line-height: 1 !important;
}

/* Tag/badge no rodapé */
.gs-tag {
    font-size: 12px !important;
    font-family: monospace !important;
    color: #6B7280 !important;
    border: 1px solid #D1D5DB !important;
    border-radius: 6px !important;
    padding: 6px 12px !important;
    display: inline-block !important;
    margin: 12px 0 0 0 !important;
    background: transparent !important;
}

/* ── RESPONSIVO MOBILE ──────────────────────────────────── */
@media (max-width: 768px) {
    .gs-section {
        padding: 60px 24px !important;
    }
}

/*====================== end 6 ==================*/



/* Força a visibilidade total do campo de texto */
.wp-block-search__input {
    color: #000000 !important;
    /* Texto preto */
    background-color: #ffffff !important;
    /* Fundo branco para destacar do amarelo */
    opacity: 1 !important;
    /* Tira qualquer transparência */
    visibility: visible !important;
    /* Garante que não está escondido */
    font-size: 18px !important;
    /* Força um tamanho de letra legível */
    line-height: 1 !important;
    height: auto !important;
    min-width: 200px !important;
    /* Garante que o campo abre com largura */
    padding: 10px !important;
    /* Dá espaço interno para o texto aparecer */
}

/* Garante que o texto não fica branco por herança do tema Frost */
.wp-block-search__input:focus,
.wp-block-search__input:active {
    color: #000000 !important;
    background-color: #ffffff !important;
}

/* 3. Remove qualquer efeito de transparência do navegador */
input[type="search"].wp-block-search__input {
    -webkit-appearance: none;
    appearance: none;
    color: #000000 !important;
}

.wp-block-navigation .wp-block-navigation-item__content {
    /* font-weight: bold !important; */
    color: #020c0f;
}

/* techbender custom styles */
.techbender-top-header a {
    /* font-weight: bold !important; */
    text-decoration: none !important;
}

.techbender-top-header a:hover {
    text-decoration: none !important;
    opacity: 0.8;
    /* Um toque sutil ao passar o mouse */
}

/* BARRA AZUL ABAIXO DO TÍTULO */
/* A BARRA: Estica de ponta a ponta */
.title-bar {
    background-color: #285fae !important;
    width: 100vw !important;
    position: relative !important;
    left: 50% !important;
    right: 50% !important;
    margin-left: -50vw !important;
    margin-right: -50vw !important;
    max-width: 100vw !important;
    box-sizing: border-box !important;

    /* Centralização Flexbox */
    display: flex !important;
    flex-direction: column !important;
    /* Permite empilhar se houver mais de uma linha */
    align-items: center !important;
    /* Centraliza horizontalmente */
    justify-content: center !important;
    /* Centraliza verticalmente */

    padding-top: 40px !important;
    padding-bottom: 40px !important;
}

/* O TÍTULO: Fica preso no centro do site */
.title-on-bar {
    color: #ffffff !important;
    margin: 0 auto !important;
    text-align: center !important;
    /* Centraliza o texto interno */

    /* Largura de segurança */
    width: 90% !important;
    max-width: 1200px !important;
    /* Ajuste para a largura do seu container de conteúdo */

    /* Garante que o Post Title do Gutenberg não herde margens estranhas */
    display: block !important;
}


/* NO MOBILE: SIDEBAR (CATEGORIES) VAI PARA O TOPO */
@media (max-width: 768px) {

    /* Inverte a ordem das colunas no mobile */
    .wp-block-columns {
        display: flex !important;
        flex-direction: column !important;
    }

    /* Força a coluna da sidebar (Categories) a aparecer PRIMEIRA */
    .wp-block-column:has(.wp-block-categories) {
        order: 1 !important;
    }

    /* Força a coluna do conteúdo (posts) a aparecer DEPOIS */
    .wp-block-column:has(.wp-block-query) {
        order: 2 !important;
    }
}

@media (max-width: 768px) {
    .techbenders-sidebar-col {
        order: 1 !important;
    }

    .techbenders-content-col {
        order: 2 !important;
    }
}

/* ===================== POS CHATGPT =========== */

/* Bloco 6 - Getting Started */
.gs-section {
    background-color: #fdd93a;
    padding-top: 80px;
    padding-bottom: 80px;
    padding-left: 24px;
    padding-right: 24px;
}

.gs-label-line {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #7a5c00;
    margin: 0;
}

.gs-highlight {
    font-style: italic;
    color: #7a5c00;
}

.gs-break {
    display: block;
}

.wp-block-heading.has-text-align-center {
    font-size: clamp(36px, 5vw, 58px);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -1px;
    color: #111827;
    margin: 0;
}

.wp-block-group .has-text-align-center {
    font-size: 16px;
    line-height: 1.7;
    color: #5a4a00;
    max-width: 560px;
    margin: 0 auto;
}

/* Cards */
.gs-card {
    background: white;
    border-radius: 16px;
    padding: 32px 24px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease;
    height: 100%;
}

.gs-card:hover {
    transform: translateY(-4px);
}

.gs-number {
    font-size: 48px;
    font-weight: 800;
    color: #fdd93a;
    line-height: 1;
    margin-bottom: 16px;
}

.gs-card .wp-block-heading {
    font-size: 17px;
    font-weight: 700;
    line-height: 1.3;
    color: #111827;
    margin: 0 0 12px 0;
}

.gs-card p:not(.gs-number):not(.gs-tag) {
    font-size: 14px;
    line-height: 1.6;
    color: #6B7280;
    margin: 0 0 auto 0;
}

.gs-tag {
    font-size: 13px;
    font-weight: 500;
    color: #7a5c00;
    background: #fef3c7;
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    margin-top: 16px;
    margin-bottom: 0;
}

/* Responsivo */
@media (max-width: 768px) {
    .gs-card {
        padding: 24px 20px;
    }

    .gs-number {
        font-size: 36px;
    }
}

/* ===================== end POS CHATGPT =========== */


/* veio do additional */

/* ====================================
   GERAL — Remove gap entre blocos
================================= */
.wp-block-group.alignfull+.wp-block-group.alignfull {
    margin-top: 0 !important;
}

.wp-site-blocks>*+* {
    margin-top: 0 !important;
}

/* ====================================
     BLOCO 5 — PAIN FACTOR (FINAL)
     ==================================== */

/* CONTAINER (opcional, caso queira escopo extra seguro) */
.bloco5-pain-factor {}

/* HEADER */
.bloco5-pf-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-bottom: 48px;
    text-align: center;
}

/* Label com linhas */
.bloco5-pf-label-line {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #285fae;
    margin: 0;
}

.bloco5-pf-label-line::before,
.bloco5-pf-label-line::after {
    content: '';
    display: block;
    width: 36px;
    height: 1px;
    background: #285fae;
    flex-shrink: 0;
}

/* Título */
.bloco5-pf-title {
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -1px;
    color: #111827;
    margin: 0;
}

.bloco5-pf-title em {
    font-style: italic;
    color: #285fae;
}

/* Subtítulo */
.bloco5-pf-subtitle {
    font-size: 16px;
    line-height: 1.7;
    color: #6B7280;
    max-width: 560px;
    margin: 0 auto;
}

/* =========================
     GRID (CORRIGIDO GUTENBERG)
     ========================= */
.bloco5-pf-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

/* garante que os filhos ocupem mesma altura */
.bloco5-pf-grid>* {
    display: flex;
}

/* =========================
     CARDS
     ========================= */
.bloco5-pf-card {
    border: 1px solid #E5E7EB;
    border-radius: 12px;
    background: #ffffff;
    padding: 32px;

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    height: 100%;
    transition: all 0.2s ease;
}

.bloco5-pf-card:hover {
    background: #EBF1FA;
    transform: translateY(-2px);
}

/* Conteúdo */
.bloco5-pf-card-title {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.3;
    color: #111827;
    margin-bottom: 12px;
}

.bloco5-pf-card-body {
    font-size: 14px;
    line-height: 1.6;
    color: #6B7280;
    margin-bottom: 16px;

    flex-grow: 1;
    min-height: 72px;
    /* 🔥 evita desalinhamento */
}

/* Quote */
.bloco5-pf-quote {
    font-size: 14px;
    font-style: italic;
    color: #285fae;
    line-height: 1.5;
    margin-top: auto;
}

/* =========================
     FOOTER
     ========================= */
.bloco5-pf-footer {
    margin-top: 48px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    text-align: center;
}

.bloco5-pf-footer-text {
    font-size: 17px;
    font-weight: 600;
    color: #111827;
    margin: 0;
}

/* Link */
.bloco5-pf-link {
    color: #285fae;
    text-decoration: underline;
}

.bloco5-pf-link:hover {
    color: #1e4f96;
}

/* Botão */
.bloco5-pf-buttons {
    display: flex;
    justify-content: center;
}

.bloco5-pf-btn .wp-block-button__link {
    background-color: #285fae;
    color: #ffffff;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    padding: 14px 28px;
    transition: all 0.2s ease;
}

.bloco5-pf-btn .wp-block-button__link:hover {
    background-color: #1e4f96;
    transform: translateY(-1px);
}

/* =========================
     RESPONSIVO
     ========================= */
@media (max-width: 768px) {
    .bloco5-pf-grid {
        grid-template-columns: 1fr;
    }
}










/* ====================================
     BLOCO 1 — HERO
  
  ================================= */


/* Wrapper principal
     overflow:hidden movido do inline style para cá (previne validação falha) */
.bloco1-hero {
    overflow: hidden !important;
    /* margin-top: 0px; */
    padding-top: 30px !important;
}

/* Linha vermelha decorativa */
.bloco1-hero-redline {
    width: 80px;
    height: 3px;
    background: #DC2626;
    border-radius: 2px;
    margin: 0 0 24px 0;
}

/* Badges — tamanhos controlados 100% via CSS
     Sem width/height no JSON → sem divergência → sem "Attempt recovery" */
.bloco1-hero-badge-zoho {
    margin: 0 !important;
    flex-shrink: 0 !important;
}

.bloco1-hero-badge-zoho img {
    width: 160px !important;
    height: 48px !important;
    object-fit: contain !important;
    display: block !important;
}

.bloco1-hero-badge-anos {
    margin: 0 !important;
    flex-shrink: 0 !important;
}

.bloco1-hero-badge-anos img {
    width: 80px !important;
    height: 80px !important;
    object-fit: contain !important;
    display: block !important;
}

/* Título */
.bloco1-hero-title {
    font-size: clamp(36px, 5vw, 64px) !important;
    font-weight: 900 !important;
    line-height: 1.05 !important;
    letter-spacing: -1.5px !important;
    color: #111827 !important;
    margin: 0 0 12px 0 !important;
}

/* Estatísticas — container */
.bloco1-hero-stats {
    gap: 0 !important;
}

/* Cada stat com separador vertical */
.bloco1-hero-stat {
    gap: 4px !important;
    padding: 0 28px !important;
    border-left: 1px solid #D1D5DB !important;
}

.bloco1-hero-stat:first-child {
    padding-left: 0 !important;
    border-left: none !important;
}

.bloco1-hero-stat__number {
    font-size: 36px !important;
    font-weight: 900 !important;
    color: #111827 !important;
    line-height: 1 !important;
    margin: 0 !important;
}

.bloco1-hero-stat__label {
    font-size: 10px !important;
    font-weight: 600 !important;
    letter-spacing: 1px !important;
    color: #6B7280 !important;
    text-transform: uppercase !important;
    line-height: 1.4 !important;
    margin: 0 !important;
}

/* ── BOTÕES ─────────────────────────────────────────────────
     TODA a estilização está aqui — zero inline styles no HTML.
     Gutenberg não tem o que "corrigir" → cor nunca muda para
     o verde padrão do tema ao salvar ou clicar em "Corrigir".
     stroke="currentColor" no SVG herda a cor do texto via CSS.
     ─────────────────────────────────────────────────────────── */

/* Botão primário */
.bloco1-hero-btn-primary .wp-block-button__link {
    background-color: #285fae !important;
    color: #ffffff !important;
    border: none !important;
    border-radius: 8px !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    padding: 14px 28px !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 10px !important;
    text-decoration: none !important;
    transition: background-color 0.2s ease, transform 0.2s ease !important;
}

.bloco1-hero-btn-primary .wp-block-button__link:hover {
    background-color: #1e4f96 !important;
    transform: translateY(-1px) !important;
}

/* Botão outline */
.bloco1-hero-btn-outline .wp-block-button__link {
    background-color: transparent !important;
    color: #111827 !important;
    border: 1.5px solid #D1D5DB !important;
    border-radius: 8px !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    padding: 14px 28px !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 10px !important;
    text-decoration: none !important;
    transition: background-color 0.2s ease, border-color 0.2s ease !important;
}

.bloco1-hero-btn-outline .wp-block-button__link:hover {
    background-color: #F3F4F6 !important;
    border-color: #9CA3AF !important;
}

/* Coluna da foto
     margin-top e margin-right movidos do inline style para cá */
.bloco1-hero-photo-col {
    position: relative !important;
    align-self: stretch !important;
    margin-top: -80px !important;
    margin-right: calc(-50vw + 50%) !important;
}

.bloco1-hero-photo {
    margin: 0 !important;
    height: 100% !important;
}

.bloco1-hero-photo img {
    width: 100% !important;
    height: 100% !important;
    min-height: 560px !important;
    object-fit: cover !important;
    object-position: center top !important;
    display: block !important;
    border-radius: 0 !important;
}

/* Card da Karen */
.bloco1-hero-card {
    position: absolute !important;
    bottom: 32px !important;
    right: 32px !important;
    background: rgba(255, 255, 255, 0.92) !important;
    backdrop-filter: blur(8px) !important;
    border-radius: 10px !important;
    padding: 16px 20px !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.10) !important;
    gap: 4px !important;
    min-width: 200px !important;
}

/* ── RESPONSIVO MOBILE ──────────────────────────────────── */
@media (max-width: 768px) {
    .bloco1-hero {
        padding-left: 24px !important;
        padding-right: 24px !important;
    }

    .bloco1-hero-photo-col {
        min-height: 360px !important;
        margin-top: 0 !important;
        margin-right: 0 !important;
    }

    .bloco1-hero-stats {
        flex-wrap: wrap !important;
        gap: 20px !important;
    }

    .bloco1-hero-stat {
        padding: 0 16px !important;
    }

    .bloco1-hero-card {
        position: relative !important;
        bottom: auto !important;
        right: auto !important;
        margin: -48px 16px 0 auto !important;
    }
}

/* ==================================
   
    bloco2-crm-migration
    
     ========================= */

/* Label esquerda */
.bloco2-crm-migration-label {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    font-size: 11px !important;
    font-weight: 600 !important;
    letter-spacing: 2px !important;
    color: rgba(255, 255, 255, 0.6) !important;
    text-transform: uppercase !important;
    margin: 0 0 20px 0 !important;
}

.bloco2-crm-migration-label::before {
    content: '' !important;
    display: block !important;
    width: 28px !important;
    height: 1px !important;
    background: rgba(255, 255, 255, 0.5) !important;
    flex-shrink: 0 !important;
}

/* Título */
.bloco2-crm-migration-title {
    font-size: clamp(36px, 4.5vw, 58px) !important;
    font-weight: 900 !important;
    line-height: 1.05 !important;
    letter-spacing: -1px !important;
    color: #ffffff !important;
    margin: 0 0 20px 0 !important;
}

.bloco2-crm-migration-title em {
    font-style: italic !important;
    color: rgba(255, 255, 255, 0.55) !important;
}

/* Linha branca decorativa */
.bloco2-crm-migration-line {
    width: 60px !important;
    height: 3px !important;
    background: rgba(255, 255, 255, 0.5) !important;
    border-radius: 2px !important;
    margin: 0 0 28px 0 !important;
}

/* Parágrafo corpo */
.bloco2-crm-migration-body {
    font-size: 16px !important;
    line-height: 1.7 !important;
    color: rgba(255, 255, 255, 0.85) !important;
    margin: 0 0 32px 0 !important;
}

/* Card de estatística */
.bloco2-crm-migration-stat {
    background: rgba(0, 0, 0, 0.2) !important;
    border-radius: 12px !important;
    gap: 20px !important;
    margin-bottom: 36px !important;
}

.bloco2-crm-migration-stat__number {
    font-size: 48px !important;
    font-weight: 900 !important;
    color: #ffffff !important;
    line-height: 1 !important;
    margin: 0 !important;
    white-space: nowrap !important;
}

.bloco2-crm-migration-stat__text {
    gap: 2px !important;
}

.bloco2-crm-migration-stat__title {
    font-size: 15px !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    margin: 0 !important;
}

.bloco2-crm-migration-stat__sub {
    font-size: 13px !important;
    color: rgba(255, 255, 255, 0.7) !important;
    margin: 0 !important;
}

/* Botão outline */
.bloco2-crm-migration-btn .wp-block-button__link {
    background-color: transparent !important;
    color: #ffffff !important;
    border: 2px solid rgba(255, 255, 255, 0.6) !important;
    border-radius: 50px !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    padding: 14px 32px !important;
}

.bloco2-crm-migration-btn .wp-block-button__link:hover {
    background-color: rgba(255, 255, 255, 0.1) !important;
    border-color: #ffffff !important;
}

/* Label coluna direita */
.bloco2-crm-migration-col-label {
    font-size: 10px !important;
    font-weight: 600 !important;
    letter-spacing: 2px !important;
    color: rgba(255, 255, 255, 0.5) !important;
    text-transform: uppercase !important;
    margin: 0 0 16px 0 !important;
    text-align: center !important;
}

/* Container dos cards */
.bloco2-crm-migration-cards {
    gap: 12px !important;
}

/* Cards imagem */
.bloco2-crm-migration-card-img {
    margin: 0 auto !important;
    border-radius: 12px !important;
    overflow: hidden !important;
    transition: transform 0.2s ease !important;
    max-width: 80% !important;
}

.bloco2-crm-migration-card-img:hover {
    transform: translateY(-2px) !important;
}

.bloco2-crm-migration-card-img img {
    width: 100% !important;
    display: block !important;
    border-radius: 12px !important;
}

/* ── RESPONSIVO MOBILE ──────────────────────────────────── */
@media (max-width: 768px) {
    .bloco2-crm-migration-section {
        padding: 60px 24px !important;
    }

    .bloco2-crm-migration-stat {
        flex-direction: column !important;
        text-align: center !important;
    }

    .bloco2-crm-migration-card-img {
        max-width: 100% !important;
    }
}

/* ================================
   
    BLOCO3-ZOHO1-CSS 
  
     ================================ */


/* Grid principal — 3 colunas */
.za-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr 1fr !important;
}

/* Item base */
.za-item {
    border-bottom: 1px solid #E5E7EB !important;
    border-right: 1px solid #E5E7EB !important;
    transition: background 0.2s;
}

/* Remove borda direita a cada 3º item (última coluna) */
.za-item:nth-child(3n) {
    border-right: none !important;
}

/* Remove borda inferior nos 3 últimos itens (última linha) */
.za-item:nth-last-child(-n+3) {
    border-bottom: none !important;
}

/* Hover */
/*
.za-item:hover {
    background: #transparent !important;
}*/

/* Label com linhas laterais */
.za-label-line {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.za-label-line::before,
.za-label-line::after {
    content: '';
    display: block;
    width: 36px;
    height: 1px;
    background: #9CA3AF;
}

/* Seta do botão CTA */
.za-arrow {
    display: inline-block;
    transition: transform 0.25s ease;
}

.wp-block-button__link:hover .za-arrow {
    transform: translateX(5px);
}

/* ── RESPONSIVO MOBILE ────────────────────────────── */
@media (max-width: 768px) {

    /* 1 coluna */
    .za-grid {
        grid-template-columns: 1fr !important;
    }

    /* Remove borda direita em todos */
    .za-item {
        border-right: none !important;
    }

    /* Restaura borda inferior nos itens que a perderam no desktop */
    .za-item:nth-last-child(-n+3) {
        border-bottom: 1px solid #E5E7EB !important;
    }

    /* Remove borda inferior apenas no último item */
    .za-item:last-child {
        border-bottom: none !important;
    }

    /* Botão largura total no mobile */
    .wp-block-buttons {
        width: 100% !important;
    }

    .wp-block-button__link {
        width: 100% !important;
        text-align: center !important;
        box-sizing: border-box !important;
    }

}

/* ====================================
   
    BLOCO 4 — LIVROS BANNER
  
     ============================= */

/* Seção wrapper */
.wb-section {
    overflow: hidden !important;
}

/* Colunas sem gap */
.wb-columns {
    gap: 0 !important;
    margin: 0 !important;
    align-items: stretch !important;
}

/* Coluna da foto */
.wb-photo-col {
    padding: 0 !important;
    align-self: stretch !important;
}

.wb-photo {
    margin: 0 !important;
    height: 100% !important;
}

.wb-photo img {
    width: 100% !important;
    height: 100% !important;
    min-height: 480px !important;
    object-fit: cover !important;
    object-position: center !important;
    display: block !important;
}

/* Coluna do conteúdo */
.wb-content-col {
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    background-color: #fed20c !important;
}

/* Título */
.wb-title {
    font-size: clamp(32px, 3.5vw, 48px) !important;
    font-weight: 900 !important;
    line-height: 1.1 !important;
    letter-spacing: -1px !important;
}

/* Botão largo */
.wb-btn .wp-block-button__link {
    width: 100% !important;
    justify-content: space-between !important;
    background-color: #285fae !important;
    border-radius: 8px !important;
}

.wb-btn .wp-block-button__link:hover {
    background-color: #1e4f96 !important;
    transform: translateY(-1px) !important;
}

/* Seta do botão */
.wb-arrow {
    display: inline-block !important;
    transition: transform 0.25s ease !important;
}

.wb-btn .wp-block-button__link:hover .wb-arrow {
    transform: translateX(5px) !important;
}

/* ── RESPONSIVO MOBILE ──────────────────────────────────── */
@media (max-width: 768px) {
    .wb-photo img {
        min-height: 320px !important;
    }

    .wb-content-col {
        padding: 48px 24px !important;
    }

    .wb-btn .wp-block-button__link {
        width: 100% !important;
        box-sizing: border-box !important;
        text-align: center !important;
    }
}

/*        ================================
  
     BLOCO 6 — ACT DATA RECOVERY
  
     ============================== */

/* =====================================================
     BLOCO ACT6 - DATABASE REPAIR & PASSWORD RECOVERY
     ===================================================== */

/* CONTAINER DAS COLUNAS */
.act6-columns {
    gap: 0 !important;
    margin: 0 !important;
    align-items: stretch !important;
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
}

/* COLUNA DO CONTEÚDO (ESQUERDA - 40%) */
.act6-content-col {
    flex-basis: 40% !important;
    width: 40% !important;
    max-width: 40% !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    /* background-color: #f0f2f5 !important; */
    padding-top: 64px !important;
    padding-right: 56px !important;
    padding-bottom: 64px !important;
    padding-left: 80px !important;
}

/* COLUNA DA FOTO (DIREITA - 60%) */
.act6-photo-col {
    flex-basis: 60% !important;
    width: 60% !important;
    max-width: 60% !important;
    padding: 0 !important;
    margin: 0 !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
}

/* LABEL COM LINHA DECORATIVA */
.act6-label {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    font-size: 11px !important;
    font-weight: 600 !important;
    letter-spacing: 2px !important;
    color: #DC2626 !important;
    text-transform: uppercase !important;
    margin: 0 0 20px 0 !important;
}

.act6-label::before {
    content: '' !important;
    display: block !important;
    width: 28px !important;
    height: 1px !important;
    background: #DC2626 !important;
    flex-shrink: 0 !important;
}

/* TÍTULO PRINCIPAL */
.act6-title {
    font-size: clamp(32px, 3.5vw, 42px) !important;
    font-weight: 900 !important;
    line-height: 1.1 !important;
    letter-spacing: -1px !important;
    color: #111827 !important;
    margin: 0 0 12px 0 !important;
}

/* SUBTÍTULO */
.act6-subtitle {
    font-size: 16px !important;
    font-weight: 600 !important;
    color: #4B5563 !important;
    line-height: 1.5 !important;
    margin: 0 0 24px 0 !important;
}

/* LISTA COM ÍCONES (CÍRCULO COM CHECK) */

.act6-list {
    list-style: none !important;
    padding-left: 0 !important;
    margin: 0 0 32px 0 !important;
}

/*
.act6-list-item {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    margin-bottom: 14px !important;
    font-size: 15px !important;
    font-weight: 500 !important;
    color: #374151 !important;
    line-height: 1.4 !important;
}

.act6-list-item::before {
    content: "✓" !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 20px !important;
    height: 20px !important;
    background-color: transparent !important;
    border: 2px solid #285fae !important;
    border-radius: 50% !important;
    color: #285fae !important;
    font-weight: bold !important;
    font-size: 12px !important;
    flex-shrink: 0 !important;
}
*/

/* Remove o marcador padrão do li */
/*
.act6-list-item::marker {
    display: none !important;
    content: "" !important;
}
*/

/* BOTÃO PRINCIPAL */
.act6-btn .wp-block-button__link {
    background-color: #285fae !important;
    color: #ffffff !important;
    border-radius: 8px !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    transition: all 0.2s ease !important;
    transform: translateY(-60px) !important;

}

techbenders-recover-button-222222 {
    margin-top: -30px !important;
    transform: translateY(-30px) !important;
}

.act6-btn .wp-block-button__link:hover {
    background-color: #1e4f96 !important;
    color: #ffffff !important;
    transform: translateY(-1px) !important;
    transform: translateY(-60px) !important;
}

/* NOTA ABAIXO DO BOTÃO */
.act6-btn-note {
    font-size: 13px !important;
    color: #6B7280 !important;
    margin: 10px 0 0 0 !important;
    font-weight: 500 !important;
    transform: translateY(-60px) !important;
    text-align: center;
    margin-left: 20px !important;

}

/* IMAGEM - AJUSTE DE TAMANHO */
.act6-photo-col .wp-block-image {
    margin: 0 !important;
    text-align: center !important;
}

.act6-photo-col img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    object-fit: contain !important;
    border-radius: 12px !important;
    display: block !important;
}


/* REMOVE PADDING EXTRA DA COLUNA DA DIREITA */
.act6-photo-col {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

/* GARANTE QUE O CONTAINER DA IMAGEM TAMBÉM NÃO TENHA PADDING */
.act6-photo-col .wp-block-image {
    padding-top: 0 !important;
    margin-top: 0 !important;
}

/* SE O PROBLEMA FOR NO FIGURE */
.act6-photo-col figure {
    padding-top: 0 !important;
    margin-top: 0 !important;
}

/* FORÇA A COLUNA DA DIREITA ALINHADA NO TOPO */
.act6-photo-col {
    align-self: flex-start !important;
    justify-content: flex-start !important;
    margin-top: 0 !important;
    padding-top: 0 !important;
}

/* SE O PROBLEMA FOR NO CONTAINER DAS COLUNAS */
.act6-columns {
    align-items: stretch !important;
}

/* SE O PROBLEMA FOR NA IMAGEM DENTRO DA COLUNA */
.act6-photo-col .wp-block-image {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

.techbenders-full-width {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
    background: #EEEEEE !important;
    box-sizing: border-box !important;
}

/* =====================================================
     RESPONSIVO MOBILE
     ===================================================== */

@media (max-width: 768px) {

    /* Empilha as colunas */
    .act6-columns {
        flex-direction: column !important;
    }

    /* Colunas ocupam 100% no mobile */
    .act6-content-col,
    .act6-photo-col {
        flex-basis: 100% !important;
        width: 100% !important;
        max-width: 100% !important;
    }

    /* Ajusta padding do conteúdo no mobile */
    .act6-content-col {
        padding: 48px 24px !important;
    }

    /* Ajusta imagem no mobile */
    .act6-photo-col img {
        min-height: auto !important;
    }
}

/* ================
     BLOCO 8 — WEBINAR BANNER
     =========== */

/* Colunas sem gap — mesma lógica do wb-columns */
.b8w-columns {
    gap: 0 !important;
    margin: 0 !important;
    align-items: stretch !important;
}

/* Coluna do conteúdo — flex vertical, centralizado */
.b8w-content-col {
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    background-color: #285ca7 !important;
}

/* Título */
.b8w-title {
    font-size: clamp(32px, 3.5vw, 52px) !important;
    font-weight: 900 !important;
    line-height: 1.1 !important;
    letter-spacing: -1px !important;
    color: #ffffff !important;
}

/* Coluna da imagem — ocupa a altura total da seção */
.b8w-photo-col {
    padding: 0 !important;
    align-self: stretch !important;
}

.b8w-photo {
    margin: 0 !important;
    height: 100% !important;
}

.b8w-photo img {
    width: 100% !important;
    height: 100% !important;
    min-height: 400px !important;
    object-fit: cover !important;
    object-position: center center !important;
    display: block !important;
}

/* Botões outline brancos (pill shape) */
.b8w-btn-outline .wp-block-button__link {
    background-color: transparent !important;
    color: #ffffff !important;
    border: 1.5px solid rgba(255, 255, 255, 0.7) !important;
    border-radius: 50px !important;
}

.b8w-btn-outline .wp-block-button__link:hover {
    background-color: rgba(255, 255, 255, 0.12) !important;
    border-color: #ffffff !important;
}

/* ── RESPONSIVO MOBILE ──────────────────────────────────── */
@media (max-width: 768px) {
    .b8w-content-col {
        padding: 48px 24px !important;
    }

    .b8w-photo img {
        min-height: 280px !important;
    }

    .b8w-btn-outline .wp-block-button__link {
        width: 100% !important;
        text-align: center !important;
        justify-content: center !important;
        box-sizing: border-box !important;
    }
}









/* ==================================
     BLOCO 9 — CLIENTS / TESTIMONIALS
     =========================== */

/* Label com linhas decorativas */
.tc-label-line {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
}

.tc-label-line::before,
.tc-label-line::after {
    content: '' !important;
    display: block !important;
    width: 36px !important;
    height: 1px !important;
    background: rgba(0, 0, 0, 0.35) !important;
    flex-shrink: 0 !important;
}

/* Colunas — altura igual nos dois lados */
.tc-columns {
    align-items: stretch !important;
}

.tc-col-left,
.tc-col-right {
    display: flex !important;
    flex-direction: column !important;
}

.tc-right-stack {
    height: 100% !important;
}

/* Cards */
.tc-card {
    background: rgba(0, 0, 0, 0.09) !important;
    border-radius: 16px !important;
    gap: 16px !important;
    box-sizing: border-box !important;
}

/* Card grande ocupa altura total da coluna */
.tc-card--large {
    flex: 1 !important;
    justify-content: center !important;
}

/* Ícone circular escuro */
.tc-icon {
    width: 48px !important;
    height: 48px !important;
    background: #111827 !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-shrink: 0 !important;
}

.tc-icon--sm {
    width: 40px !important;
    height: 40px !important;
}

/* Quote */
.tc-quote {
    font-size: 15px !important;
    font-weight: 600 !important;
    line-height: 1.6 !important;
    color: #111827 !important;
    margin: 0 !important;
}

.tc-card--large .tc-quote {
    font-size: 20px !important;
    font-weight: 700 !important;
    line-height: 1.5 !important;
}

/* Autor */
.tc-author-name {
    font-size: 14px !important;
    font-weight: 700 !important;
    color: #111827 !important;
    margin: 0 !important;
}

.tc-author-role {
    font-size: 13px !important;
    color: rgba(0, 0, 0, 0.5) !important;
    margin: 0 !important;
}

/* Botão outline */
.tc-btn-outline .wp-block-button__link {
    background-color: transparent !important;
    color: #111827 !important;
    border: 2px solid #111827 !important;
    border-radius: 50px !important;
    transition: background 0.2s ease, color 0.2s ease !important;
}

.tc-btn-outline .wp-block-button__link:hover {
    background-color: #111827 !important;
    color: #fdd93a !important;
}

/* ── RESPONSIVO MOBILE ──────────────────────────────────── */
@media (max-width: 768px) {
    .bloco9-clients {
        padding: 52px 24px !important;
    }

    .tc-card--large {
        flex: none !important;
    }

    .tc-right-stack {
        height: auto !important;
    }
}



/* END veio do additional */


/* Media Queries
---------------------------------------- */

/* Esconde a classe techbenders-top-menu em telas menores que 800px */
@media screen and (max-width: 799px) {
    .techbenders-top-menu {
        display: none !important;
    }
}


/* 1. No desktop, força o menu a ficar visível e remove o comportamento de hambúrguer */




@media only screen and (max-width: 600px) {

    /* -- Utility -- */

    .is-style-hidden-mobile {
        display: none !important;
    }

}

@media only screen and (max-width: 782px) {

    /* -- Columns -- */

    .is-style-columns-reverse {
        flex-direction: column-reverse;
    }

}


/* Esconde o botão hambúrguer em telas grandes */
@media (min-width: 901px) {
    .wp-block-navigation__responsive-container-open {
        display: none !important;
    }
}

/* NOVO: Esconde o menu GRANDE (horizontal) em telas PEQUENAS (até 900px) */
@media (max-width: 900px) {
    .wp-block-navigation__responsive-container:not(.is-menu-open) {
        display: none !important;
    }
}




/* Padrão (desktop) - esconder */
.techbenders-karen-small {
    display: none !important;
}

.bloco1-hero-photo {
    display: block !important;
}

.bloco1-hero-card {
    display: block !important;
}

/* MOBILE - mostrar */
@media (max-width: 768px) {
    .techbenders-karen-small {
        display: block !important;
    }

    .bloco1-hero-photo {
        display: none !important;
    }

    .bloco1-hero-card {
        display: none !important;
    }


    .bloco1-hero-photo,
    .bloco1-hero-card,
    .bloco1-hero-photo-col {
        display: none !important;
        height: 0 !important;
        min-height: 0 !important;
        padding: 0 !important;
        margin: 0 !important;
    }


    /* ALINHA O MENU HAMBÚRGUER À DIREITA */
    .wp-block-navigation__responsive-container.is-menu-open {
        position: fixed !important;
        right: 0 !important;
        left: auto !important;
        top: 0 !important;
        width: 80% !important;
        max-width: 300px !important;
        transform: none !important;
    }







}