/* ============================================================
   BLUMAR BLOG — camada premium (14/07/2026)
   Carregado DEPOIS do blog_style.css: só sobrescreve o visual,
   nenhuma classe/id do PHP legado foi renomeada.
   Tokens e regras de marca: ver playbook image-bank-premium-redesign.md
   ============================================================ */

:root {
    --bb-navy:      #11344a;
    --bb-navy-deep: #0a2438;
    --bb-orange:    #ff9600;
    --bb-orange-2:  #d97f00;
    --bb-ink:       #22374a;
    --bb-dim:       #52708a;
    --bb-faint:     #93a7b8;
    --bb-border:    rgba(17, 52, 74, .13);
    --bb-bg:        #f2f5f8;
    --bb-card:      #ffffff;
    --bb-serif:     'Fraunces', Georgia, serif;
    --bb-sans:      'Roboto', Arial, sans-serif;
    --bb-radius:    16px;
    --bb-shadow-sm: 0 1px 3px rgba(10,36,56,.07), 0 4px 14px rgba(10,36,56,.06);
    --bb-shadow-lg: 0 12px 34px rgba(10,36,56,.16);
    --bb-ring:      0 0 0 3px rgba(255,150,0,.22);
}

html { scroll-padding-top: 90px; }

body {
    margin: 0;
    background: var(--bb-bg);
    font-family: var(--bb-sans);
    color: var(--bb-ink);
    -webkit-font-smoothing: antialiased;
}

/* ---------- header do site novo (top_blog.php) ---------- */
.bb-site-header {
    position: relative;
    background: linear-gradient(135deg, #0a2438 0%, #143c58 100%);
    border-top: 4px solid var(--bb-orange);
    z-index: 80;
}

.bb-site-header-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 14px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.bb-site-logo img { height: 34px; display: block; }

.bb-header-actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

/* dropdown de idiomas (mesmos ids do site: tradutor_page.js) */
.language_selector .dropdown { position: relative; }

.dropbtn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.28);
    border-radius: 999px;
    color: #fff;
    font-family: var(--bb-sans);
    font-size: 13px;
    font-weight: 500;
    padding: 7px 14px;
    cursor: pointer;
    transition: background .18s, border-color .18s;
}

.dropbtn:hover { background: rgba(255,255,255,.16); border-color: rgba(255,255,255,.5); }

.bandeiras_drop { width: 20px; height: 14px; object-fit: cover; border-radius: 2px; display: inline-block; }

.dropdown-content {
    display: none;
    position: absolute;
    right: 0;
    top: calc(100% + 8px);
    min-width: 170px;
    background: #fff;
    border: 1px solid var(--bb-border);
    border-radius: 12px;
    box-shadow: var(--bb-shadow-lg);
    padding: 6px;
    z-index: 90;
}

.dropdown-content.show { display: block; }

.dropdown-content a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    border-radius: 8px;
    font-family: var(--bb-sans);
    font-size: 13.5px;
    color: var(--bb-ink);
    cursor: pointer;
    text-decoration: none;
    white-space: nowrap;
}

.dropdown-content a:hover { background: rgba(255,150,0,.12); color: var(--bb-orange-2); }

/* hamburguer */
.bb-burger {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 42px;
    height: 38px;
    padding: 0 9px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.28);
    border-radius: 10px;
    cursor: pointer;
    transition: background .18s;
}

.bb-burger:hover { background: rgba(255,255,255,.16); }

.bb-burger span {
    display: block;
    height: 2px;
    border-radius: 2px;
    background: #fff;
    transition: transform .22s, opacity .18s;
}

.bb-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.bb-burger.open span:nth-child(2) { opacity: 0; }
.bb-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* gaveta do menu */
.bb-drawer {
    display: none;
    position: absolute;
    right: max(12px, calc((100% - 1280px) / 2 + 22px));
    top: calc(100% - 6px);
    min-width: 250px;
    background: var(--bb-navy-deep);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 14px;
    box-shadow: var(--bb-shadow-lg);
    padding: 10px;
    z-index: 90;
}

.bb-drawer.open { display: block; }

.bb-drawer a {
    display: block;
    padding: 11px 16px;
    border-radius: 9px;
    color: #fff;
    font-family: var(--bb-sans);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: .1em;
    text-transform: uppercase;
    text-decoration: none;
    transition: background .16s, color .16s;
}

.bb-drawer a:hover { background: rgba(255,150,0,.16); color: var(--bb-orange); }

/* ---------- menu do blog (navegacao.php) ---------- */
#menu_blog_content {
    background: #fff;
    border-bottom: 1px solid var(--bb-border);
    box-shadow: var(--bb-shadow-sm);
    position: sticky;
    top: 0;
    z-index: 60;
}

#menu_blog {
    max-width: 1280px;
    margin: 0 auto;
    padding: 12px 22px;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    background: transparent;
}

#menu_blog .menu_blog_respon {
    display: flex;
    align-items: center;
    gap: 2px;
    flex-wrap: wrap;
    flex: 1 1 auto;
    min-width: 0;
}

#menu_blog a {
    font-family: var(--bb-sans);
    font-size: 12.5px;
    font-weight: 500;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--bb-navy);
    text-decoration: none;
    padding: 7px 12px;
    border-radius: 999px;
    transition: background .18s, color .18s;
    white-space: nowrap;
}

#menu_blog a:hover {
    background: rgba(255, 150, 0, .13);
    color: var(--bb-orange-2);
}

#menu_blog span { display: none; }           /* mata os pipes "|" */
#menu_blog .categoria_mobile { display: none; }

/* busca vira pílula */
#box_busca_reserva2 {
    display: flex;
    align-items: center;
    background: var(--bb-bg);
    border: 1px solid var(--bb-border);
    border-radius: 999px;
    padding: 2px 4px 2px 16px;
    margin-left: auto;
    float: none;
    width: auto;
}

#box_busca_reserva2 input.busca-file {
    border: 0;
    background: transparent;
    outline: none;
    font-family: var(--bb-sans);
    font-size: 13px;
    color: var(--bb-ink);
    width: 150px;
    padding: 8px 0;
}

#box_busca_reserva2 input.busca-file:focus { box-shadow: none; }

#box_busca_reserva3 { float: none; }

#box_busca_reserva3 button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border: 0;
    border-radius: 999px;
    background: var(--bb-orange);
    color: #fff;
    cursor: pointer;
    transition: background .18s;
}

#box_busca_reserva3 button:hover { background: var(--bb-orange-2); }
#box_busca_reserva3 button .material-icons { font-size: 18px; }

/* ---------- hero (listagens) ---------- */
.bb-hero {
    background:
        radial-gradient(900px 320px at 85% -40%, rgba(255,255,255,.28), transparent 60%),
        radial-gradient(700px 300px at 8% 120%, rgba(10,36,56,.28), transparent 62%),
        linear-gradient(155deg, #ff9600 0%, #ff8a00 55%, #f57c00 100%);
    color: #fff;
    padding: 46px 22px 54px;
}

.bb-hero-inner { max-width: 1280px; margin: 0 auto; }

.bb-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: .34em;
    text-transform: uppercase;
    color: rgba(255,255,255,.92);
}

.bb-eyebrow::before {
    content: '';
    width: 34px;
    height: 2px;
    background: rgba(255,255,255,.65);
}

.bb-hero-title {
    font-family: var(--bb-serif);
    font-weight: 480;
    font-size: clamp(30px, 3.6vw, 46px);
    line-height: 1.08;
    margin: 12px 0 10px;
    color: #fff;
    text-transform: none;
}

.bb-hero-title em {
    font-style: italic;
    color: var(--bb-navy-deep);
}

.bb-hero-sub {
    margin: 0;
    font-size: 15px;
    font-weight: 300;
    max-width: 60ch;
    color: rgba(255,255,255,.94);
}

/* ---------- home premium: faixa de título + carrossel (14/07/2026) ---------- */
.bb-home-head {
    background: #fff;
    border-bottom: 1px solid var(--bb-border);
}

.bb-home-head-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 30px 22px 26px;
}

.bb-eyebrow--dark {
    color: var(--bb-orange-2);
}

.bb-eyebrow--dark::before { background: var(--bb-orange); }

.bb-home-title {
    font-family: var(--bb-serif);
    font-weight: 480;
    font-size: clamp(26px, 2.6vw, 36px);
    line-height: 1.1;
    color: var(--bb-navy);
    margin: 10px 0 0;
    text-transform: none;
}

.bb-home-title em { font-style: italic; color: var(--bb-orange-2); }

.bb-carousel-wrap {
    max-width: 1280px;
    margin: 26px auto 0;
    padding: 0 22px;
}

.bb-carousel {
    position: relative;
    aspect-ratio: 21 / 8;
    min-height: 340px;
    max-height: 520px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--bb-shadow-lg);
    background: var(--bb-navy-deep);
}

.bb-slide {
    position: absolute;
    inset: 0;
    display: block;
    opacity: 0;
    visibility: hidden;
    transition: opacity .65s ease, visibility .65s;
    text-decoration: none;
    color: #fff;
}

.bb-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.bb-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.06);
    transition: transform 7s ease-out;
}

.bb-slide.active img { transform: scale(1); }

.bb-slide-shade {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to top, rgba(7, 27, 42, .88) 0%, rgba(7, 27, 42, .35) 46%, rgba(7, 27, 42, .08) 75%),
        linear-gradient(100deg, rgba(7, 27, 42, .45), transparent 55%);
}

.bb-slide-content {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 0 clamp(24px, 4vw, 54px) clamp(22px, 3.2vw, 42px);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    max-width: 820px;
}

.bb-slide-cat {
    background: var(--bb-orange);
    color: #fff;
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
    padding: 6px 12px;
    border-radius: 999px;
}

.bb-slide-title {
    font-family: var(--bb-serif);
    font-weight: 480;
    font-size: clamp(21px, 2.5vw, 34px);
    line-height: 1.18;
    text-shadow: 0 2px 18px rgba(7, 27, 42, .45);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.bb-slide-meta {
    font-size: 11.5px;
    font-weight: 500;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .82);
}

.bb-slide-cta {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-top: 4px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: #fff;
    border-bottom: 2px solid var(--bb-orange);
    padding-bottom: 5px;
}

.bb-slide-cta svg { width: 15px; height: 10px; transition: transform .18s; }

.bb-slide:hover .bb-slide-cta svg { transform: translateX(4px); }

.bb-car-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, .35);
    border-radius: 50%;
    background: rgba(7, 27, 42, .35);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
    color: #fff;
    cursor: pointer;
    transition: background .18s, border-color .18s;
}

.bb-car-arrow:hover { background: var(--bb-orange); border-color: var(--bb-orange); }

.bb-car-arrow svg { width: 20px; height: 20px; }

.bb-car-prev { left: 18px; }
.bb-car-next { right: 18px; }

.bb-car-dots {
    position: absolute;
    right: clamp(24px, 4vw, 54px);
    bottom: clamp(20px, 2.6vw, 34px);
    z-index: 5;
    display: flex;
    gap: 8px;
}

.bb-car-dots button {
    width: 9px;
    height: 9px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, .45);
    cursor: pointer;
    padding: 0;
    transition: background .18s, width .25s;
}

.bb-car-dots button.active {
    background: var(--bb-orange);
    width: 26px;
}

/* kicker da grade */
.bb-grid-head {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    gap: 14px;
}

.bb-grid-kicker {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .24em;
    text-transform: uppercase;
    color: var(--bb-navy);
    white-space: nowrap;
}

.bb-grid-head::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--bb-border);
}

/* paginação numérica */
.bb-pagination {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 14px;
}

.bb-page {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 8px;
    border: 1px solid var(--bb-border);
    border-radius: 12px;
    background: #fff;
    font-size: 14px;
    font-weight: 500;
    color: var(--bb-navy);
    text-decoration: none;
    transition: background .18s, color .18s, border-color .18s, transform .18s;
}

a.bb-page:hover {
    background: var(--bb-orange);
    border-color: var(--bb-orange);
    color: #fff;
    transform: translateY(-2px);
}

.bb-page-atual {
    background: var(--bb-navy-deep);
    border-color: var(--bb-navy-deep);
    color: #fff;
    font-weight: 700;
}

.bb-page-nav svg { width: 17px; height: 17px; }

.bb-page-gap {
    color: var(--bb-faint);
    padding: 0 2px;
}

/* ---------- casca das páginas ---------- */
#content_blog {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 330px;
    gap: 30px;
    max-width: 1280px;
    margin: 34px auto 60px;
    padding: 0 22px;
    width: auto;
}

/* ---------- grid de cards (listagens) ---------- */
.content_principal {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(285px, 1fr));
    gap: 24px;
    align-content: start;
    width: auto;
    float: none;
}

.content_principal > a {
    display: block;
    text-decoration: none;
    color: inherit;
    border-radius: var(--bb-radius);
    outline: none;
}

.content_principal > a:focus-visible { box-shadow: var(--bb-ring); }

.box_post {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    background: var(--bb-card);
    border: 1px solid var(--bb-border);
    border-radius: var(--bb-radius);
    overflow: hidden;
    box-shadow: var(--bb-shadow-sm);
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
    width: auto;
    margin: 0;
    padding: 0;
    content-visibility: auto;
    contain-intrinsic-size: 1px 420px;
}

.content_principal > a:hover .box_post {
    transform: translateY(-5px);
    box-shadow: var(--bb-shadow-lg);
    border-color: rgba(255, 150, 0, .55);
}

.tag_categoria {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 3;
    background: rgba(10, 36, 56, .78);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    color: #fff;
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    padding: 6px 11px;
    border-radius: 999px;
    border-left: 3px solid var(--bb-orange);
}

.box_post_capa {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #dfe7ee;
    width: auto;
    height: auto;
}

.box_post_capa img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .35s ease;
}

.content_principal > a:hover .box_post_capa img { transform: scale(1.05); }

/* categorias antigas põem o h2 dentro da capa: vira overlay elegante */
.box_post_capa h2 {
    position: absolute;
    left: 0; right: 0; bottom: 0;
    margin: 0;
    padding: 44px 18px 14px;
    background: linear-gradient(to top, rgba(10,36,56,.88), rgba(10,36,56,0));
    font-family: var(--bb-serif);
    font-weight: 480;
    font-size: 19px;
    line-height: 1.25;
    color: #fff;
    text-transform: none;
    height: auto;
    max-height: none;
}

.box_post_descritivo {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 18px 20px 20px;
    width: auto;
}

.box_post_descritivo h2 {
    font-family: var(--bb-serif);
    font-weight: 480;
    font-size: 20px;
    line-height: 1.28;
    color: var(--bb-navy);
    margin: 0 0 8px;
    text-transform: none;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: auto;      /* legado fixa 2vw (6.5vw mobile) e decapitava a 2ª linha */
    max-height: none;
}

/* .box_post_descritivo prefixo p/ vencer o legado ".box_post p{font-size:0.98vw}"
   (2 classes > classe+elemento), senão a data e o resumo escalam agressivo em telas largas */
.box_post_descritivo .data-posts {
    order: -1;
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--bb-faint);
    margin: 0 0 10px;
}

.data-posts::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--bb-orange);
}

.box_post_descritivo .post_resumo {
    font-size: 14.5px;
    font-weight: 400;
    line-height: 1.62;
    color: var(--bb-dim);
    margin: 0 0 16px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* créditos de foto não são resumo */
.post_resumo .creditos_capa, .post_resumo br { display: none; }

.box_post button {
    margin-top: auto;
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: none;
    border: 0;
    padding: 0;
    font-family: var(--bb-sans);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--bb-orange-2);
    cursor: pointer;
    width: auto;
    height: auto;
}

.box_post button::after {
    content: '';
    width: 16px;
    height: 10px;
    background: currentColor;
    -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 10'><path d='M0 5h13M9 1l4 4-4 4' stroke='black' stroke-width='1.8' fill='none'/></svg>") no-repeat center / contain;
    mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 10'><path d='M0 5h13M9 1l4 4-4 4' stroke='black' stroke-width='1.8' fill='none'/></svg>") no-repeat center / contain;
    transition: transform .18s;
}

.content_principal > a:hover .box_post button::after { transform: translateX(4px); }

/* ---------- sidebar ---------- */
.content_menu_lateral {
    background: var(--bb-card);
    border: 1px solid var(--bb-border);
    border-radius: var(--bb-radius);
    box-shadow: var(--bb-shadow-sm);
    padding: 24px;
    align-self: start;
    position: sticky;
    top: 82px;
    width: auto;
    float: none;
    margin: 0;
}

.content_menu_lateral h3 {
    font-family: var(--bb-sans);
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: .22em;
    color: var(--bb-navy);
    margin: 0 0 6px;
    padding-bottom: 10px;
    position: relative;
    border-bottom: 0;
}

.content_menu_lateral h3::after {
    content: '';
    position: absolute;
    left: 0; bottom: 0;
    width: 42px;
    height: 3px;
    border-radius: 2px;
    background: var(--bb-orange);
}

.content_menu_lateral .post_lateral {
    width: auto;
    margin: 0;
}

.content_menu_lateral .post_lateral img {
    width: 100%;
    height: auto;      /* legado fixa height:11vw (independente da largura) e deixava a foto quase quadrada */
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-radius: 12px;
    display: block;
    margin-top: 20px;
    padding-top: 0;    /* legado tinha padding-top:30px empurrando a foto pra baixo do H5 */
}

.content_menu_lateral h5 {
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--bb-orange-2);
    margin: 12px 0 4px;
}

.content_menu_lateral h4 {
    font-family: var(--bb-serif);
    font-weight: 480;
    font-size: 16.5px;
    line-height: 1.3;
    color: var(--bb-navy);
    margin: 0 0 6px;
    text-transform: none;
}

.content_menu_lateral .post_lateral p {
    font-size: 13px;
    font-weight: 300;
    line-height: 1.6;
    color: var(--bb-dim);
    margin: 0 0 6px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.content_menu_lateral .post_lateral p.date {
    font-size: 11px;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--bb-faint);
    font-style: normal;
}

.content_menu_lateral .post_lateral a {
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--bb-orange-2);
    text-decoration: none;
}

.content_menu_lateral .post_lateral a:hover { text-decoration: underline; }

.line_post_lateral {
    height: 1px;
    background: var(--bb-border);
    margin: 18px 0 0;
    width: auto;
}

/* ---------- página do post ---------- */
.tag_categoria_post {
    max-width: 1280px;
    margin: 22px auto 0;
    padding: 0 22px;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--bb-faint);
}

.tag_categoria_post a {
    color: var(--bb-dim);
    text-decoration: none;
}

.tag_categoria_post a:hover { color: var(--bb-orange-2); }

.tag_categoria_post span { color: var(--bb-faint); }

.content_principal_post {
    background: var(--bb-card);
    border: 1px solid var(--bb-border);
    border-radius: var(--bb-radius);
    box-shadow: var(--bb-shadow-sm);
    padding: clamp(24px, 4.5vw, 52px);
    width: auto;
    float: none;
    min-width: 0;
}

.content_principal_post h1 {
    font-family: var(--bb-serif);
    font-weight: 480;
    font-size: clamp(28px, 3.1vw, 40px);
    line-height: 1.14;
    color: var(--bb-navy);
    margin: 0 0 14px;
    text-transform: none;
}

.data_post {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    row-gap: 10px;
    gap: 9px;
    font-size: 11.5px;
    font-weight: 500;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--bb-faint);
    margin: 0 0 22px;
}

.data_post::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--bb-orange);
}

.bb-meta-dot {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: var(--bb-faint);
    flex: none;
}

/* ícones compactos no meta row do topo (junto da data/tempo de leitura) */
.bb-share-inline {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.bb-share-inline a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: var(--bb-bg);
    color: var(--bb-navy);
    transition: background .18s, color .18s, transform .18s;
}

.bb-share-inline a svg { width: 11px; height: 11px; }

.bb-share-inline a:hover {
    background: var(--bb-orange);
    color: #fff;
    transform: translateY(-1px);
}

/* ---------- barra de compartilhar (rodapé do post, 14/07/2026) ---------- */
.bb-share-bar {
    margin-top: 34px;
    padding-top: 26px;
    border-top: 1px solid var(--bb-border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.bb-share-label {
    margin: 0;
    font-family: var(--bb-serif);
    font-style: italic;
    font-weight: 480;
    font-size: 17px;
    color: var(--bb-navy);
}

.bb-share-icons {
    display: flex;
    align-items: center;
    gap: 10px;
}

.bb-share-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--bb-bg);
    color: var(--bb-navy);
    transition: background .18s, color .18s, transform .18s;
}

.bb-share-icons a svg { width: 16px; height: 16px; }

.bb-share-icons a:hover {
    background: var(--bb-orange);
    color: #fff;
    transform: translateY(-2px);
}

@media (max-width: 640px) {
    .bb-share-bar { justify-content: flex-start; }
}

/* ---------- FAQ do post -> acordeão (14/07/2026) ---------- */
.bb-faq-accordion {
    margin: 10px 0 30px;
    border-top: 1px solid var(--bb-border);
}

.bb-faq-item {
    border-bottom: 1px solid var(--bb-border);
}

.bb-faq-item summary {
    cursor: pointer;
    list-style: none;
    position: relative;
    padding: 17px 36px 17px 0;
    font-family: var(--bb-sans);
    font-weight: 600;
    font-size: 16px;
    line-height: 1.4;
    color: var(--bb-navy);
}

.bb-faq-item summary::-webkit-details-marker { display: none; }

.bb-faq-item summary::after {
    content: '+';
    position: absolute;
    right: 2px;
    top: 17px;
    font-size: 22px;
    font-weight: 400;
    line-height: 1;
    color: var(--bb-orange);
}

.bb-faq-item[open] summary::after { content: '\2212'; }

.bb-faq-body {
    padding: 0 0 20px;
    font-size: 16px;
    line-height: 1.75;
}

.bb-faq-body p:last-child,
.bb-faq-body ul:last-child,
.bb-faq-body ol:last-child { margin-bottom: 0; }

img.foto_topo {
    width: 100%;
    border-radius: 14px;
    display: block;
    margin: 0 0 8px;
    box-shadow: var(--bb-shadow-sm);
}

.post_texto {
    font-size: 17px;
    font-weight: 400;
    line-height: 1.85;
    color: #33475a;
    margin-top: 18px;
}

.post_texto p { margin: 0 0 1.35em; }

.post_texto h2, .post_texto h3, .post_texto h4 {
    font-family: var(--bb-serif);
    font-weight: 480;
    color: var(--bb-navy);
    line-height: 1.25;
    text-transform: none;
    margin: 1.7em 0 .6em;
}

.post_texto h2 { font-size: 27px; }
.post_texto h3 { font-size: 22px; }
.post_texto h4 { font-size: 19px; }

.post_texto a { color: var(--bb-orange-2); }

.post_texto img {
    /* o conteúdo salvo no banco traz width="650" fixo no HTML; sem isso a
       foto nunca cresce além de 650px mesmo com coluna de texto bem mais larga
       -- turismo pede foto grande, então esticamos até a largura do texto. */
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: var(--bb-shadow-sm);
    margin: 14px 0;
}

.post_texto ul, .post_texto ol { padding-left: 1.3em; margin: 0 0 1.35em; }
.post_texto li { margin-bottom: .45em; }

.post_texto blockquote {
    margin: 1.6em 0;
    padding: 16px 22px;
    border-left: 4px solid var(--bb-orange);
    background: #fff7ec;
    border-radius: 0 12px 12px 0;
    font-style: italic;
    color: var(--bb-navy);
}

.creditos_capa {
    display: inline-block;
    font-size: 12px;
    font-style: italic;
    color: var(--bb-faint);
    background: none;
}

.video-blog, .responsive-video {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--bb-shadow-sm);
    margin: 10px 0 22px;
}

.video-blog iframe { width: 100%; aspect-ratio: 16 / 9; display: block; border: 0; }

/* ---------- botão fixo "voltar ao topo" (14/07/2026) ---------- */
.bb-back-top {
    position: fixed;
    right: 26px;
    bottom: 26px;
    z-index: 70;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border: 0;
    border-radius: 50%;
    background: var(--bb-navy-deep);
    color: #fff;
    box-shadow: var(--bb-shadow-lg);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity .22s, transform .22s, visibility .22s, background .18s;
}

.bb-back-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.bb-back-top:hover { background: var(--bb-orange); }

.bb-back-top svg { width: 20px; height: 20px; }

@media (max-width: 640px) {
    .bb-back-top {
        right: 16px;
        bottom: 16px;
        width: 42px;
        height: 42px;
    }
}

/* ---------- responsivo ---------- */
@media (max-width: 980px) {
    #content_blog { grid-template-columns: 1fr; }
    .content_menu_lateral { position: static; }
}

@media (max-width: 640px) {
    .bb-hero { padding: 34px 18px 40px; }
    #content_blog { padding: 0 14px; margin-top: 22px; }
    .content_principal { grid-template-columns: 1fr; }
    #menu_blog { padding: 10px 12px; }
    #menu_blog .menu_blog_respon {
        overflow-x: auto;
        flex-wrap: nowrap;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    #menu_blog .menu_blog_respon::-webkit-scrollbar { display: none; }
    #box_busca_reserva2 { width: 100%; margin: 8px 0 0; }
    #box_busca_reserva2 input.busca-file { width: 100%; flex: 1; }
    .content_principal_post { padding: 20px 16px; }
    .post_texto { font-size: 16px; }
}

/* responsivo do carrossel/home head (14/07/2026) */
@media (max-width: 760px) {
    .bb-carousel { aspect-ratio: 4 / 3; min-height: 300px; }
    .bb-carousel-wrap { padding: 0 14px; margin-top: 16px; }
    .bb-car-arrow { width: 38px; height: 38px; }
    .bb-car-prev { left: 10px; }
    .bb-car-next { right: 10px; }
    .bb-home-head-inner { padding: 22px 18px 20px; }
}
