:root {
    --bg: #f4f8fb;
    --surface: #ffffff;
    --surface-2: #eef6fb;
    --text: #122033;
    --muted: #637082;
    --primary: #06263f;
    --primary-2: #0a4c78;
    --teal: #0aa6a6;
    --teal-dark: #087c86;
    --gold: #d8a83e;
    --green: #138a4d;
    --red: #d93a4a;
    --purple: #7457d3;
    --line: #dce7ef;
    --shadow: 0 18px 45px rgba(11, 43, 72, .12);
    --shadow-soft: 0 10px 28px rgba(11, 43, 72, .08);
    --radius: 22px;
    --radius-sm: 14px;
    --header-height: 82px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--text);
    background: radial-gradient(circle at top left, #eaf8ff 0, transparent 34rem), var(--bg);
    line-height: 1.55;
    padding-bottom: 76px;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, select, textarea { font: inherit; }
.container { width: min(1180px, calc(100% - 32px)); margin: 0 auto; }

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255,255,255,.92);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(220,231,239,.75);
}
.header-inner { min-height: var(--header-height); display: flex; align-items: center; justify-content: space-between; gap: 22px; }
.brand img { width: 176px; height: auto; object-fit: contain; }
.main-nav { display: flex; align-items: center; gap: 8px; }
.main-nav a {
    padding: 12px 14px;
    border-radius: 14px;
    color: #1d3149;
    font-weight: 800;
    font-size: .94rem;
}
.main-nav a:hover, .main-nav .nav-cta { background: var(--primary); color: #fff; }
.menu-toggle { display: none; width: 46px; height: 46px; border: 0; border-radius: 14px; background: #eef6fb; align-items: center; justify-content: center; flex-direction: column; gap: 5px; cursor: pointer; }
.menu-toggle span { width: 22px; height: 2px; background: var(--primary); border-radius: 10px; }

.flash-area { padding-top: 14px; }
.flash { padding: 14px 16px; border-radius: 14px; margin: 10px 0; font-weight: 700; border: 1px solid var(--line); }
.flash-success { color: #075f39; background: #eafff3; border-color: #bceacb; }
.flash-error { color: #8f1825; background: #fff0f2; border-color: #ffd5db; }
.flash-warning { color: #76510b; background: #fff8e6; border-color: #f7dda3; }
.flash-info { color: #074b73; background: #eaf7ff; border-color: #bce3fb; }

.hero {
    margin: 20px auto 26px;
    min-height: 520px;
    border-radius: 34px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(90deg, rgba(4,28,50,.95), rgba(4,28,50,.68), rgba(4,28,50,.28)), url('../img/banner-europa.png') center/cover no-repeat;
    color: #fff;
    box-shadow: var(--shadow);
}
.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 10% 10%, rgba(10,166,166,.22), transparent 36%), linear-gradient(180deg, transparent 56%, rgba(3,21,36,.72));
    pointer-events: none;
}
.hero-content { position: relative; z-index: 2; width: min(620px, 100%); padding: 58px 42px; }
.hero-logo { width: 340px; max-width: 82%; margin-bottom: 30px; filter: drop-shadow(0 14px 22px rgba(0,0,0,.28)); }
.hero h1 { font-size: clamp(2.35rem, 7vw, 5.2rem); line-height: .98; margin: 0 0 20px; letter-spacing: -.04em; }
.hero h1 strong { color: var(--gold); display: block; }
.hero p { font-size: clamp(1.02rem, 2.4vw, 1.42rem); max-width: 570px; color: #eaf7ff; margin: 0 0 28px; }
.hero-actions, .button-row { display: flex; flex-wrap: wrap; gap: 12px; }
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 50px;
    padding: 14px 18px;
    border-radius: 14px;
    border: 1px solid transparent;
    font-weight: 900;
    cursor: pointer;
    transition: .18s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-soft); }
.btn-primary { background: linear-gradient(135deg, #0876d7, #0a4c78); color: #fff; }
.btn-teal { background: linear-gradient(135deg, #09b6b6, #087c86); color: #fff; }
.btn-gold { background: linear-gradient(135deg, #e6b849, #a87610); color: #fff; }
.btn-light { background: #fff; color: var(--primary); border-color: var(--line); }
.btn-green { background: linear-gradient(135deg, #16a85f, #087b43); color: #fff; }
.btn-danger { background: #fff0f2; color: #a51624; border-color: #ffd5db; }
.btn-block { width: 100%; }

.section { margin: 30px 0; }
.section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; margin-bottom: 16px; }
.eyebrow { color: var(--teal-dark); font-weight: 950; text-transform: uppercase; letter-spacing: .09em; font-size: .78rem; margin-bottom: 4px; }
.section h2, .page-title { font-size: clamp(1.55rem, 4vw, 2.75rem); line-height: 1.08; margin: 0; letter-spacing: -.03em; }
.section-lead { color: var(--muted); max-width: 800px; margin: 8px 0 0; }
.view-all { color: var(--primary-2); font-weight: 900; }

.card { background: rgba(255,255,255,.94); border: 1px solid rgba(220,231,239,.85); border-radius: var(--radius); box-shadow: var(--shadow-soft); }
.card-pad { padding: 24px; }
.grid { display: grid; gap: 18px; }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.grid-6 { grid-template-columns: repeat(6, minmax(0, 1fr)); }

.country-card, .quick-card, .city-card, .guide-card, .location-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 18px;
    box-shadow: var(--shadow-soft);
    transition: .18s ease;
}
.country-card:hover, .quick-card:hover, .city-card:hover, .guide-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: rgba(10,166,166,.35); }
.country-flag-wrap { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.country-code { display: inline-flex; align-items: center; justify-content: center; width: 42px; height: 42px; border-radius: 14px; background: #eef6fb; color: var(--primary-2); font-weight: 900; letter-spacing: .04em; flex: 0 0 auto; }
.country-flag { width: 68px; height: 48px; border-radius: 12px; display: block; object-fit: cover; background: var(--surface-2); border: 1px solid rgba(18,32,51,.08); box-shadow: 0 8px 18px rgba(11,43,72,.08); }
.country-card h3, .quick-card h3, .city-card h3, .guide-card h3 { margin: 0 0 8px; line-height: 1.2; }
.country-card p, .quick-card p, .city-card p, .guide-card p { margin: 0; color: var(--muted); }
.quick-card { min-height: 128px; display: flex; flex-direction: column; justify-content: center; }
.quick-icon { width: 46px; height: 46px; border-radius: 14px; display: grid; place-items: center; margin-bottom: 12px; color: #fff; font-size: 1.35rem; background: var(--primary-2); }
.city-card { overflow: hidden; padding: 0; }
.city-card img { width: 100%; height: 160px; object-fit: cover; }
.city-card-body { padding: 16px; }
.badge { display: inline-flex; align-items: center; gap: 8px; padding: 7px 10px; border-radius: 999px; background: #eef6fb; color: var(--primary-2); font-weight: 900; font-size: .82rem; }
.badge-gold { background: #fff5d8; color: #8a5d09; }
.badge-green { background: #eafff3; color: #0b6a3e; }

.member-strip {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 18px;
    align-items: center;
    padding: 26px;
    background: linear-gradient(135deg, #ffffff, #edf8ff);
}
.tiktok-box {
    border-radius: var(--radius);
    border: 1px solid #bdeed0;
    background: linear-gradient(135deg, #effff4, #ffffff);
    padding: 24px;
}
.tiktok-head { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.tiktok-logo { width: 58px; height: 58px; border-radius: 16px; background: #050505; display: grid; place-items: center; color: #fff; font-weight: 950; font-size: 1.7rem; }
.tiktok-toggle { display: flex; gap: 10px; margin: 14px 0; }
.choice { flex: 1; position: relative; }
.choice input { position: absolute; opacity: 0; pointer-events: none; }
.choice span { display: block; text-align: center; padding: 13px 14px; border-radius: 14px; border: 1px solid var(--line); background: #fff; font-weight: 900; cursor: pointer; }
.choice input:checked + span { background: #eafff3; border-color: #82d99f; color: #087b43; }
.tiktok-follow-panel { display: none; padding: 16px; border-radius: 18px; background: #edfff4; border: 1px solid #bdeed0; }
.tiktok-follow-panel.is-visible { display: block; }

.form-card { max-width: 760px; margin: 28px auto; padding: 28px; }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }
.form-group label { font-weight: 900; color: #23344b; }
.form-control, .form-select, .form-textarea {
    width: 100%; border: 1px solid #cfdde8; border-radius: 14px; min-height: 50px; padding: 13px 14px; background: #fff; color: var(--text); outline: none;
}
.form-control:focus, .form-select:focus, .form-textarea:focus { border-color: var(--teal); box-shadow: 0 0 0 4px rgba(10,166,166,.12); }
.form-textarea { min-height: 140px; resize: vertical; }
.help-text { color: var(--muted); font-size: .9rem; }

.page-hero {
    margin: 24px 0;
    padding: clamp(28px, 5vw, 46px);
    border-radius: 30px;
    color: #fff;
    background: linear-gradient(135deg, rgba(6,38,63,.98), rgba(10,76,120,.88)), url('../img/banner-europa.png') center/cover;
    box-shadow: var(--shadow);
}
.page-hero h1 { font-size: clamp(2rem, 6vw, 4rem); line-height: 1; margin: 12px 0; letter-spacing: -.04em; }
.page-hero p { color: #e7f6ff; max-width: 780px; font-size: 1.08rem; }
.breadcrumb { font-weight: 900; color: #dff6ff; }
.content-layout { display: grid; grid-template-columns: 1fr 320px; gap: 22px; align-items: start; }
.sidebar { position: sticky; top: calc(var(--header-height) + 16px); display: grid; gap: 16px; }
.guide-content h2, .guide-content h3 { line-height: 1.15; margin-top: 26px; }
.guide-content p { color: #35465d; }
.step-list, .check-list { padding-left: 0; list-style: none; display: grid; gap: 12px; }
.step-list { counter-reset: step; }
.step-list li, .check-list li {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 14px 16px 14px 52px;
    position: relative;
    box-shadow: var(--shadow-soft);
}
.step-list li::before { counter-increment: step; content: counter(step); position: absolute; left: 14px; top: 13px; width: 28px; height: 28px; border-radius: 50%; background: var(--primary-2); color: #fff; display: grid; place-items: center; font-weight: 950; }
.check-list li::before { content: '✓'; position: absolute; left: 15px; top: 13px; width: 28px; height: 28px; border-radius: 50%; background: #eafff3; color: #087b43; display: grid; place-items: center; font-weight: 950; }

.search-bar { display: flex; gap: 10px; background: #fff; padding: 10px; border-radius: 18px; border: 1px solid var(--line); box-shadow: var(--shadow-soft); }
.search-bar input { flex: 1; border: 0; outline: none; padding: 10px 12px; min-width: 0; }
.table-wrap { overflow-x: auto; border-radius: 18px; border: 1px solid var(--line); background: #fff; }
table { width: 100%; border-collapse: collapse; }
th, td { padding: 14px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
th { background: #f3f8fc; font-size: .86rem; text-transform: uppercase; letter-spacing: .04em; color: #43546b; }
.actions { display: flex; gap: 8px; flex-wrap: wrap; }

.admin-shell { display: grid; grid-template-columns: 260px 1fr; min-height: 100vh; }
.admin-sidebar { background: var(--primary); color: #fff; padding: 22px; position: sticky; top: 0; min-height: 100vh; }
.admin-sidebar img { width: 170px; background: #fff; padding: 8px; border-radius: 16px; margin-bottom: 22px; }
.admin-sidebar a { display: block; padding: 12px 14px; border-radius: 12px; margin-bottom: 6px; font-weight: 800; color: #eaf7ff; }
.admin-sidebar a:hover { background: rgba(255,255,255,.12); }
.admin-content { padding: 28px; }
.stat-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.stat { padding: 20px; border-radius: 20px; background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-soft); }
.stat strong { display: block; font-size: 2rem; color: var(--primary-2); }

.site-footer { background: #051f35; color: #d8edf8; margin-top: 54px; padding: 46px 0 18px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 26px; }
.footer-logo { width: 190px; background: #fff; border-radius: 18px; padding: 8px; margin-bottom: 12px; }
.site-footer h3 { color: #fff; margin-top: 0; }
.site-footer a { display: block; padding: 5px 0; color: #d8edf8; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); margin-top: 28px; padding-top: 16px; display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; color: #a8c5d7; }
.mobile-bottom-nav { position: fixed; left: 0; right: 0; bottom: 0; z-index: 60; display: none; grid-template-columns: repeat(4, 1fr); background: rgba(255,255,255,.96); backdrop-filter: blur(18px); border-top: 1px solid var(--line); box-shadow: 0 -10px 25px rgba(11,43,72,.08); }
.mobile-bottom-nav a { padding: 8px 6px 10px; display: grid; place-items: center; color: #43546b; font-size: .78rem; font-weight: 900; }
.mobile-bottom-nav span { font-size: 1.35rem; line-height: 1; color: var(--primary-2); }

@media (max-width: 980px) {
    .menu-toggle { display: flex; }
    .main-nav { display: none; position: absolute; top: calc(100% + 1px); left: 16px; right: 16px; background: #fff; border: 1px solid var(--line); border-radius: 20px; padding: 12px; box-shadow: var(--shadow); flex-direction: column; align-items: stretch; }
    .main-nav.is-open { display: flex; }
    .main-nav a { width: 100%; }
    .grid-6 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .grid-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .content-layout { grid-template-columns: 1fr; }
    .sidebar { position: static; }
    .member-strip { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
    .stat-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .admin-shell { grid-template-columns: 1fr; }
    .admin-sidebar { position: static; min-height: auto; }
}
@media (max-width: 640px) {
    body { padding-bottom: 72px; }
    .container { width: min(100% - 22px, 1180px); }
    .brand img { width: 144px; }
    .hero { min-height: 520px; border-radius: 24px; background-position: 58% center; }
    .hero-content { padding: 34px 22px; }
    .hero-logo { width: 260px; }
    .hero-actions .btn { width: 100%; justify-content: flex-start; }
    .grid-6, .grid-4, .grid-3, .grid-2, .form-grid { grid-template-columns: 1fr; }
    .section-head { align-items: flex-start; flex-direction: column; }
    .country-card, .quick-card, .guide-card, .location-card { padding: 16px; }
    .city-card img { height: 190px; }
    .form-card { padding: 20px; }
    .search-bar { flex-direction: column; }
    .footer-grid { grid-template-columns: 1fr; }
    .mobile-bottom-nav { display: grid; }
    .table-wrap table { min-width: 760px; }
}

/* =========================================================
   CORREÇÃO DE LAYOUT V2 - Home mais limpa, mobile-first
   Motivo: o banner anterior já tinha textos/logos dentro da imagem.
   Agora o fundo usa apenas a área visual das cidades, sem duplicar textos.
   ========================================================= */
html,
body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

.container,
section.container {
    width: calc(100% - 32px);
    max-width: 1180px;
    margin-left: auto;
    margin-right: auto;
}

.site-header {
    min-height: 78px;
}

.header-inner {
    min-height: 78px;
}

.brand {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
}

.brand img {
    width: 138px;
    max-height: 70px;
    object-fit: contain;
}

.main-nav a {
    white-space: nowrap;
}

.home-page .hero {
    min-height: 0;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    align-items: center;
    margin-top: 24px;
    margin-bottom: 34px;
    padding: clamp(30px, 5vw, 62px);
    border-radius: 34px;
    background:
        linear-gradient(90deg, rgba(3, 22, 38, .98) 0%, rgba(3, 22, 38, .92) 42%, rgba(3, 22, 38, .62) 70%, rgba(3, 22, 38, .24) 100%),
        url('../img/banner-europa-bg.jpg') center right / cover no-repeat;
    isolation: isolate;
}

.home-page .hero::after {
    background:
        radial-gradient(circle at 10% 12%, rgba(12, 181, 181, .22), transparent 34%),
        linear-gradient(180deg, rgba(255,255,255,0) 62%, rgba(3, 19, 33, .78) 100%);
}

.home-page .hero-content {
    width: min(680px, 100%);
    padding: 0;
}

.home-page .hero-logo {
    width: clamp(150px, 19vw, 230px);
    max-width: 100%;
    margin: 0 0 22px;
    padding: 10px 12px;
    border-radius: 20px;
    background: rgba(255, 255, 255, .96);
    box-shadow: 0 18px 38px rgba(0, 0, 0, .22);
    filter: none;
}

.home-page .hero h1 {
    max-width: 720px;
    font-size: clamp(2.15rem, 5.2vw, 4.7rem);
    line-height: 1.02;
    text-wrap: balance;
    text-shadow: 0 12px 28px rgba(0, 0, 0, .28);
}

.home-page .hero h1 strong {
    color: #e9b847;
}

.home-page .hero p {
    max-width: 620px;
    font-size: clamp(1rem, 1.7vw, 1.25rem);
    color: #f3fbff;
    text-shadow: 0 8px 22px rgba(0, 0, 0, .24);
}

.home-page .hero-actions {
    max-width: 690px;
}

.home-page .hero-actions .btn {
    min-width: 170px;
    min-height: 52px;
    box-shadow: 0 14px 28px rgba(0, 0, 0, .18);
}

.section {
    scroll-margin-top: 100px;
}

.country-card,
.quick-card,
.guide-card,
.location-card {
    min-width: 0;
}

.country-card p,
.quick-card p,
.city-card p,
.guide-card p {
    overflow-wrap: anywhere;
}

.footer-logo {
    width: 150px;
    background: rgba(255, 255, 255, .96);
}

@media (min-width: 1180px) {
    .home-page .hero {
        min-height: 560px;
    }
}

@media (max-width: 980px) {
    .site-header {
        position: sticky;
    }

    .main-nav {
        z-index: 90;
    }

    .home-page .hero {
        background:
            linear-gradient(180deg, rgba(3, 22, 38, .98) 0%, rgba(3, 22, 38, .88) 58%, rgba(3, 22, 38, .58) 100%),
            url('../img/banner-europa-bg.jpg') center / cover no-repeat;
    }
}

@media (max-width: 640px) {
    :root {
        --header-height: 70px;
    }

    body {
        background: #f4f8fb;
    }

    .container,
    section.container {
        width: calc(100% - 22px);
        max-width: 100%;
    }

    .header-inner {
        min-height: 70px;
    }

    .brand img {
        width: 112px;
        max-height: 58px;
    }

    .home-page .hero {
        margin-top: 14px;
        margin-bottom: 28px;
        min-height: auto;
        padding: 24px 18px 22px;
        border-radius: 26px;
        background:
            linear-gradient(180deg, rgba(3, 22, 38, .98) 0%, rgba(3, 22, 38, .90) 52%, rgba(3, 22, 38, .72) 100%),
            url('../img/banner-europa-bg.jpg') center / cover no-repeat;
    }

    .home-page .hero-logo {
        width: 138px;
        margin-bottom: 16px;
        border-radius: 16px;
        padding: 8px;
    }

    .home-page .hero h1 {
        font-size: clamp(2rem, 10vw, 3.15rem);
        line-height: 1.05;
        margin-bottom: 14px;
    }

    .home-page .hero p {
        font-size: 1rem;
        margin-bottom: 18px;
    }

    .home-page .hero-actions {
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .home-page .hero-actions .btn {
        width: 100%;
        min-width: 0;
        justify-content: center;
        min-height: 50px;
    }

    .section {
        margin: 26px 0;
    }

    .section h2,
    .page-title {
        font-size: clamp(1.55rem, 8vw, 2.25rem);
    }

    .country-card,
    .quick-card,
    .guide-card,
    .location-card {
        border-radius: 18px;
    }

    .country-flag {
        width: 58px;
        height: 42px;
    }

    .country-code {
        width: 38px;
        height: 38px;
        border-radius: 12px;
        font-size: .86rem;
    }

    .tiktok-head {
        align-items: flex-start;
    }

    .tiktok-toggle {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }
}


.hero-full-width {
    width: calc(100vw - 32px);
    max-width: 1680px;
    margin-left: calc(50% - 50vw + 16px);
    margin-right: calc(50% - 50vw + 16px);
}

.country-page-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 220px;
    gap: 24px;
    align-items: center;
}

.country-page-flag-card {
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.22);
    border-radius: 24px;
    padding: 20px;
    text-align: center;
    backdrop-filter: blur(8px);
}
.country-page-flag-card img {
    width: 110px;
    height: 78px;
    object-fit: cover;
    border-radius: 16px;
    margin: 0 auto 12px;
    box-shadow: 0 14px 30px rgba(0,0,0,.22);
}
.country-page-flag-card strong,
.country-page-flag-card span {
    display: block;
}
.country-page-flag-card span {
    color: #d8edf8;
    margin-top: 4px;
}
.city-card-link {
    display: inline-flex;
    margin-top: 12px;
    color: var(--primary-2);
    font-weight: 900;
}
.city-overview-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}
.mini-info-card {
    background: linear-gradient(135deg, #ffffff, #eff8fd);
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 18px;
    box-shadow: var(--shadow-soft);
}
.mini-info-card strong {
    display: block;
    margin-bottom: 8px;
    color: var(--primary);
}
.mini-info-card span {
    color: var(--muted);
}
.side-list {
    margin: 0;
    padding-left: 20px;
    color: #35465d;
}
.side-list li + li {
    margin-top: 8px;
}


@media (max-width: 980px) {
    .country-page-hero-grid {
        grid-template-columns: 1fr;
    }

    .hero-full-width {
        width: calc(100vw - 24px);
        margin-left: calc(50% - 50vw + 12px);
        margin-right: calc(50% - 50vw + 12px);
    }
}

@media (max-width: 640px) {
    .city-overview-grid {
        grid-template-columns: 1fr;
    }

    .hero-full-width {
        width: calc(100vw - 22px);
        margin-left: calc(50% - 50vw + 11px);
        margin-right: calc(50% - 50vw + 11px);
    }
}

/* =========================================================
   V4 - Páginas completas de cidades + bandeiras e logo limpa
   ========================================================= */
.city-hero-full {
    min-height: 315px;
    display: flex;
    align-items: center;
    background-position: center;
    background-size: cover;
    color: #fff;
    box-shadow: inset 0 -90px 120px rgba(5,31,53,.22);
}
.city-hero-content {
    padding: clamp(40px, 6vw, 76px) 0;
}
.city-hero-content .breadcrumb {
    color: #d7ecff;
    font-weight: 900;
    margin-bottom: 14px;
    text-shadow: 0 8px 22px rgba(0,0,0,.26);
}
.city-hero-content h1 {
    font-size: clamp(3rem, 9vw, 6.6rem);
    line-height: .92;
    margin: 0 0 16px;
    letter-spacing: -.06em;
    text-shadow: 0 18px 42px rgba(0,0,0,.35);
}
.city-hero-content p {
    max-width: 760px;
    color: #f0f9ff;
    font-size: clamp(1rem, 2vw, 1.35rem);
    margin: 0;
    text-shadow: 0 10px 28px rgba(0,0,0,.28);
}
.city-intro-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(340px, .9fr);
    gap: 22px;
    align-items: stretch;
}
.city-about-card,
.city-facts-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 24px;
    box-shadow: var(--shadow-soft);
    padding: clamp(20px, 3vw, 28px);
}
.city-about-card h2 {
    margin-bottom: 16px;
}
.city-about-card p {
    color: #35465d;
    font-size: 1.02rem;
}
.city-facts-card {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}
.fact-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 14px;
    border-radius: 18px;
    background: #f7fbfe;
    border: 1px solid #e5eef6;
}
.fact-item > span {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: #eaf6ff;
    color: var(--primary-2);
    font-size: 1.22rem;
    flex: 0 0 auto;
}
.fact-item strong {
    display: block;
    color: var(--primary);
    line-height: 1.2;
}
.fact-item p {
    margin: 4px 0 0;
    color: var(--muted);
    line-height: 1.35;
}
.history-timeline {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    position: relative;
}
.timeline-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
    padding: 20px;
    position: relative;
    overflow: hidden;
}
.timeline-card::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-2), var(--teal), var(--gold));
}
.timeline-card span,
.arrival-step span {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, #0876d7, #0a4c78);
    color: #fff;
    font-weight: 950;
    margin-bottom: 12px;
}
.timeline-card h3 {
    margin: 0 0 8px;
    color: var(--primary);
}
.timeline-card p {
    margin: 0;
    color: var(--muted);
}
.need-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 20px;
    box-shadow: var(--shadow-soft);
    transition: .18s ease;
}
.need-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
    border-color: rgba(10,166,166,.34);
}
.need-icon {
    width: 50px;
    height: 50px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    background: #eaf6ff;
    color: var(--primary-2);
    font-size: 1.45rem;
    margin-bottom: 14px;
}
.need-card h3 {
    margin: 0 0 8px;
}
.need-card p {
    color: var(--muted);
    margin: 0 0 14px;
}
.need-card strong {
    color: var(--primary-2);
}
.city-services-row {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 20px;
}
.service-chip {
    min-height: 116px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    justify-content: center;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 14px;
    box-shadow: var(--shadow-soft);
}
.service-chip span {
    font-size: 1.45rem;
}
.service-chip strong {
    color: var(--primary);
    line-height: 1.2;
}
.service-chip small {
    color: var(--muted);
    line-height: 1.35;
}
.city-location-grid {
    margin-top: 18px;
}
.arrival-steps {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 14px;
}
.arrival-step {
    min-height: 130px;
    background: linear-gradient(135deg, #ffffff, #f2f9ff);
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 18px;
    box-shadow: var(--shadow-soft);
}
.arrival-step strong {
    display: block;
    color: var(--primary);
    line-height: 1.25;
}
.faq-list {
    margin-top: 18px;
    display: grid;
    gap: 10px;
}
.faq-item {
    border: 1px solid var(--line);
    border-radius: 16px;
    background: #fff;
    overflow: hidden;
}
.faq-item summary {
    cursor: pointer;
    padding: 16px 18px;
    font-weight: 900;
    color: var(--primary);
    list-style: none;
}
.faq-item summary::-webkit-details-marker {
    display: none;
}
.faq-item summary::after {
    content: '+';
    float: right;
    color: var(--primary-2);
    font-weight: 950;
}
.faq-item[open] summary::after {
    content: '−';
}
.faq-item p {
    margin: 0;
    padding: 0 18px 18px;
    color: var(--muted);
}
.side-guide-list {
    display: grid;
    gap: 10px;
    margin-top: 14px;
}
.side-guide-list a {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    padding: 12px;
    border-radius: 14px;
    background: #f3f8fc;
    color: var(--primary);
    font-weight: 850;
}
.side-guide-list a:hover {
    background: #eaf6ff;
}
.side-guide-list span {
    flex: 0 0 auto;
}

@media (max-width: 1080px) {
    .city-services-row { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .arrival-steps { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .history-timeline { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 780px) {
    .city-intro-grid { grid-template-columns: 1fr; }
    .city-facts-card { grid-template-columns: 1fr; }
    .city-services-row { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .arrival-steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 560px) {
    .city-hero-full { min-height: 250px; }
    .city-hero-content { padding: 34px 0; }
    .history-timeline,
    .city-services-row,
    .arrival-steps { grid-template-columns: 1fr; }
    .city-about-card,
    .city-facts-card { border-radius: 20px; padding: 18px; }
}


/* =========================================================
   AJUSTE V5 - HERO/BANNER EM LARGURA TOTAL
   O banner agora ocupa 100% da largura da viewport.
   ========================================================= */
.home-page .hero.hero-full-width {
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    margin-top: 0;
    margin-bottom: 34px;
    border-radius: 0;
    min-height: 0;
    padding: 0;
    display: block;
    background:
        linear-gradient(90deg, rgba(3, 22, 38, .98) 0%, rgba(3, 22, 38, .92) 40%, rgba(3, 22, 38, .60) 68%, rgba(3, 22, 38, .22) 100%),
        url('../img/banner-europa-bg.jpg') center center / cover no-repeat;
}

.home-page .hero.hero-full-width .hero-inner {
    width: min(1280px, calc(100% - 64px));
    margin: 0 auto;
    min-height: 600px;
    display: flex;
    align-items: center;
    padding: clamp(34px, 6vw, 70px) 0;
}

.home-page .hero.hero-full-width .hero-content {
    width: min(690px, 100%);
    padding: 0;
}

@media (min-width: 1440px) {
    .home-page .hero.hero-full-width .hero-inner {
        min-height: 660px;
    }
}

@media (max-width: 980px) {
    .home-page .hero.hero-full-width {
        background:
            linear-gradient(180deg, rgba(3, 22, 38, .98) 0%, rgba(3, 22, 38, .88) 58%, rgba(3, 22, 38, .58) 100%),
            url('../img/banner-europa-bg.jpg') center / cover no-repeat;
    }

    .home-page .hero.hero-full-width .hero-inner {
        width: calc(100% - 40px);
        min-height: 520px;
        padding: 28px 0;
    }
}

@media (max-width: 640px) {
    .home-page .hero.hero-full-width {
        margin-top: 0;
        margin-bottom: 28px;
        border-radius: 0;
        background:
            linear-gradient(180deg, rgba(3, 22, 38, .98) 0%, rgba(3, 22, 38, .92) 52%, rgba(3, 22, 38, .74) 100%),
            url('../img/banner-europa-bg.jpg') center / cover no-repeat;
    }

    .home-page .hero.hero-full-width .hero-inner {
        width: calc(100% - 24px);
        min-height: auto;
        padding: 24px 0 22px;
    }
}


/* =========================================================
   AJUSTE V6 - FOTOS REAIS DAS CIDADES + BANNER NÍTIDO
   ========================================================= */
.city-card {
    overflow: hidden;
    padding: 0;
    border-radius: 22px;
}

.city-card img {
    width: 100%;
    height: 210px;
    object-fit: cover;
    object-position: center;
    display: block;
}

.city-card-body {
    padding: 18px;
}

.city-hero-full {
    background-size: cover !important;
    background-position: center center !important;
}

@media (max-width: 640px) {
    .city-card img {
        height: 220px;
    }
}


/* =========================================================
   AJUSTE V7 - CADASTROS PROFISSIONAIS + CHAT
   ========================================================= */
.account-type-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.account-type-card {
    position: relative;
    display: block;
    cursor: pointer;
}

.account-type-card input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.account-type-card span {
    display: block;
    min-height: 122px;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: linear-gradient(135deg, #ffffff, #f3f9fd);
    box-shadow: var(--shadow-soft);
    transition: .18s ease;
}

.account-type-card strong,
.account-type-card small {
    display: block;
}

.account-type-card strong {
    margin-bottom: 8px;
    color: var(--primary);
    font-size: 1rem;
}

.account-type-card small {
    color: var(--muted);
    line-height: 1.35;
}

.account-type-card input:checked + span {
    border-color: #0876d7;
    background: linear-gradient(135deg, #eaf7ff, #ffffff);
    box-shadow: 0 0 0 4px rgba(8, 118, 215, .11), var(--shadow-soft);
}

.professional-panel {
    margin: 16px 0 20px;
    padding: 18px;
    border: 1px solid #cbe5f8;
    border-radius: 20px;
    background: linear-gradient(135deg, #f5fbff, #ffffff);
}

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

.chat-hero {
    background:
        linear-gradient(90deg, rgba(5, 31, 53, .98), rgba(6, 68, 112, .88)),
        url('../img/banner-europa-bg.jpg') center / cover no-repeat;
    color: #fff;
    margin: 0 0 28px;
}

.chat-hero-inner {
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 42px 0;
}

.chat-hero h1 {
    font-size: clamp(2.25rem, 7vw, 5rem);
    line-height: .98;
    margin: 16px 0;
    letter-spacing: -.05em;
}

.chat-hero p {
    max-width: 760px;
    color: #e7f6ff;
    font-size: 1.08rem;
}

.chat-entry-card {
    display: grid;
    grid-template-columns: .95fr 1.05fr;
    gap: 24px;
    align-items: stretch;
    border: 1px solid var(--line);
    border-radius: 26px;
    background: #fff;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.chat-entry-info {
    padding: 28px;
    background: linear-gradient(135deg, #06263f, #0a4c78);
    color: #fff;
}

.chat-entry-info p {
    color: #d8edf8;
}

.chat-entry-form {
    padding: 28px;
}

.chat-check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-weight: 800;
    margin: 12px 0 18px;
}

.chat-shell {
    border: 1px solid var(--line);
    border-radius: 26px;
    background: #fff;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.chat-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 18px;
    background: linear-gradient(135deg, #ffffff, #eef7fd);
    border-bottom: 1px solid var(--line);
}

.chat-topbar strong,
.chat-topbar span {
    display: block;
}

.chat-topbar span {
    color: var(--muted);
    font-weight: 800;
}

.chat-rules {
    padding: 12px 18px;
    background: #fff8e6;
    color: #76510b;
    border-bottom: 1px solid #f7dda3;
}

.chat-window {
    height: min(66vh, 680px);
    min-height: 420px;
    overflow-y: auto;
    padding: 22px;
    background:
        radial-gradient(circle at top left, rgba(10, 166, 166, .10), transparent 28rem),
        #f5f9fc;
}

.chat-empty {
    text-align: center;
    color: var(--muted);
    padding: 54px 10px;
}

.chat-message {
    display: flex;
    gap: 12px;
    align-items: flex-end;
    margin-bottom: 16px;
}

.chat-message.is-mine {
    flex-direction: row-reverse;
}

.chat-avatar {
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, #0876d7, #0a4c78);
    color: #fff;
    font-weight: 950;
    box-shadow: var(--shadow-soft);
}

.chat-bubble {
    max-width: min(720px, calc(100% - 60px));
    padding: 14px 16px;
    border-radius: 20px 20px 20px 6px;
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-soft);
}

.chat-message.is-mine .chat-bubble {
    border-radius: 20px 20px 6px 20px;
    background: linear-gradient(135deg, #eaf7ff, #ffffff);
    border-color: #b9dcf4;
}

.chat-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.chat-meta strong {
    color: var(--primary);
}

.chat-meta span,
.chat-meta small,
.chat-meta em {
    color: var(--muted);
    font-size: .82rem;
    font-style: normal;
    font-weight: 800;
}

.chat-meta em {
    padding: 3px 7px;
    border-radius: 999px;
    background: #eef6fb;
    color: var(--primary-2);
}

.chat-bubble p {
    margin: 0;
    color: #24344a;
    white-space: normal;
    word-break: break-word;
}

.chat-compose {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
    padding: 16px;
    border-top: 1px solid var(--line);
    background: #fff;
}

.chat-compose textarea {
    min-height: 58px;
    max-height: 160px;
}

@media (max-width: 980px) {
    .account-type-grid,
    .chat-entry-card {
        grid-template-columns: 1fr;
    }

    .chat-hero-inner,
    .chat-topbar {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 640px) {
    .chat-window {
        min-height: 360px;
        height: 58vh;
        padding: 14px;
    }

    .chat-compose {
        grid-template-columns: 1fr;
    }

    .chat-bubble {
        max-width: calc(100% - 54px);
    }
}


/* =========================================================
   AJUSTE V8 - BANNER HD, FOTOS, BANCOS, PROFISSIONAIS E CHAT
   ========================================================= */
.home-page .hero.hero-full-width {
    background:
        linear-gradient(90deg, rgba(3, 22, 38, .96) 0%, rgba(3, 22, 38, .84) 42%, rgba(3, 22, 38, .44) 72%, rgba(3, 22, 38, .10) 100%),
        url('../img/hero-imigracao-v8.jpg') center center / cover no-repeat !important;
}

.page-hero,
.search-hero-v8,
.chat-hero {
    background:
        linear-gradient(135deg, rgba(6,38,63,.95), rgba(10,76,120,.78)),
        url('../img/hero-imigracao-v8.jpg') center / cover no-repeat !important;
}

.city-card img {
    width: 100%;
    height: 225px !important;
    object-fit: cover;
    object-position: center;
    background: #dce7ef;
}

.city-card {
    overflow: hidden;
}

.city-hero-photo {
    min-height: 420px;
    background-size: cover !important;
    background-position: center center !important;
}

.city-hero-title-row {
    display: flex;
    align-items: center;
    gap: 20px;
}

.city-hero-flag {
    width: 96px;
    height: 68px;
    object-fit: cover;
    border-radius: 16px;
    background: #fff;
    padding: 6px;
    box-shadow: 0 18px 40px rgba(0,0,0,.28);
}

.bank-card,
.professional-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 20px;
    box-shadow: var(--shadow-soft);
}

.bank-card h3,
.professional-card h3 {
    margin: 12px 0 8px;
}

.professional-card img {
    width: 72px;
    height: 72px;
    border-radius: 18px;
    object-fit: cover;
    margin-bottom: 12px;
    border: 3px solid #eef6fb;
}

.member-profile-card > img,
.admin-user-photo {
    width: 82px;
    height: 82px;
    border-radius: 20px;
    object-fit: cover;
    margin-bottom: 12px;
    border: 3px solid #eef6fb;
}

.admin-user-photo {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    margin: 0;
}

.search-bar-advanced {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 180px 220px auto;
    align-items: center;
}

.account-type-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.account-type-card {
    position: relative;
    display: block;
    cursor: pointer;
}

.account-type-card input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.account-type-card span {
    display: block;
    min-height: 122px;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: linear-gradient(135deg, #ffffff, #f3f9fd);
    box-shadow: var(--shadow-soft);
    transition: .18s ease;
}

.account-type-card strong,
.account-type-card small {
    display: block;
}

.account-type-card strong {
    margin-bottom: 8px;
    color: var(--primary);
    font-size: 1rem;
}

.account-type-card small {
    color: var(--muted);
    line-height: 1.35;
}

.account-type-card input:checked + span {
    border-color: #0876d7;
    background: linear-gradient(135deg, #eaf7ff, #ffffff);
    box-shadow: 0 0 0 4px rgba(8, 118, 215, .11), var(--shadow-soft);
}

.professional-panel {
    display: none;
    margin: 16px 0 20px;
    padding: 18px;
    border: 1px solid #cbe5f8;
    border-radius: 20px;
    background: linear-gradient(135deg, #f5fbff, #ffffff);
}

.professional-panel.is-visible,
form:has(input[name="account_type"][value="advogado"]:checked) [data-account-panel="advogado"],
form:has(input[name="account_type"][value="relocation"]:checked) [data-account-panel="relocation"] {
    display: block !important;
}

.professional-panel h3 {
    margin-top: 0;
}

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

.chat-entry-card {
    display: grid;
    grid-template-columns: .95fr 1.05fr;
    gap: 24px;
    align-items: stretch;
    border: 1px solid var(--line);
    border-radius: 26px;
    background: #fff;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.chat-entry-info {
    padding: 28px;
    background: linear-gradient(135deg, #06263f, #0a4c78);
    color: #fff;
}

.chat-entry-info p {
    color: #d8edf8;
}

.chat-entry-form {
    padding: 28px;
}

.chat-check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-weight: 800;
    margin: 12px 0 18px;
}

.chat-shell {
    border: 1px solid var(--line);
    border-radius: 26px;
    background: #fff;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.chat-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 16px 18px;
    background: linear-gradient(135deg, #ffffff, #eef7fd);
    border-bottom: 1px solid var(--line);
}

.chat-current-user {
    display: flex;
    align-items: center;
    gap: 12px;
}

.chat-current-user img,
.chat-avatar-img {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    object-fit: cover;
    flex: 0 0 46px;
    box-shadow: var(--shadow-soft);
}

.chat-topbar strong,
.chat-topbar span {
    display: block;
}

.chat-topbar span {
    color: var(--muted);
    font-weight: 800;
}

.chat-rules {
    padding: 12px 18px;
    background: #fff8e6;
    color: #76510b;
    border-bottom: 1px solid #f7dda3;
}

.chat-window {
    height: min(66vh, 680px);
    min-height: 420px;
    overflow-y: auto;
    padding: 22px;
    background: radial-gradient(circle at top left, rgba(10, 166, 166, .10), transparent 28rem), #f5f9fc;
}

.chat-empty {
    text-align: center;
    color: var(--muted);
    padding: 54px 10px;
}

.chat-message {
    display: flex;
    gap: 12px;
    align-items: flex-end;
    margin-bottom: 16px;
}

.chat-message.is-mine {
    flex-direction: row-reverse;
}

.chat-avatar {
    flex: 0 0 46px;
    width: 46px;
    height: 46px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, #0876d7, #0a4c78);
    color: #fff;
    font-weight: 950;
    box-shadow: var(--shadow-soft);
}

.chat-bubble {
    max-width: min(720px, calc(100% - 60px));
    padding: 14px 16px;
    border-radius: 20px 20px 20px 6px;
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-soft);
}

.chat-message.is-mine .chat-bubble {
    border-radius: 20px 20px 6px 20px;
    background: linear-gradient(135deg, #eaf7ff, #ffffff);
    border-color: #b9dcf4;
}

.chat-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.chat-meta strong {
    color: var(--primary);
}

.chat-meta span,
.chat-meta small,
.chat-meta em {
    color: var(--muted);
    font-size: .82rem;
    font-style: normal;
    font-weight: 800;
}

.chat-meta em {
    padding: 3px 7px;
    border-radius: 999px;
    background: #eef6fb;
    color: var(--primary-2);
}

.chat-bubble p {
    margin: 0;
    color: #24344a;
    word-break: break-word;
}

.chat-compose {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
    padding: 16px;
    border-top: 1px solid var(--line);
    background: #fff;
}

.chat-compose textarea {
    min-height: 58px;
    max-height: 160px;
}

@media (max-width: 980px) {
    .account-type-grid,
    .chat-entry-card,
    .search-bar-advanced {
        grid-template-columns: 1fr;
    }
    .city-hero-title-row,
    .chat-topbar {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 640px) {
    .city-card img { height: 200px !important; }
    .city-hero-photo { min-height: 360px; }
    .city-hero-flag { width: 76px; height: 54px; }
    .chat-window { min-height: 360px; height: 58vh; padding: 14px; }
    .chat-compose { grid-template-columns: 1fr; }
    .chat-bubble { max-width: calc(100% - 54px); }
}


/* =========================================================
   V9 - Páginas de matérias para SEO e indexação
   ========================================================= */
.seo-article-hero {
    background:
        linear-gradient(90deg, rgba(5,31,53,.98), rgba(10,76,120,.86)),
        url('../img/banner-europa-bg.jpg') center / cover no-repeat;
    color: #fff;
    padding: clamp(42px, 7vw, 86px) 0;
}

.seo-article-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 280px;
    gap: 28px;
    align-items: center;
}

.seo-article-hero h1 {
    font-size: clamp(2.2rem, 6vw, 5rem);
    line-height: .98;
    margin: 16px 0;
    letter-spacing: -.05em;
}

.seo-article-hero p {
    max-width: 850px;
    color: #eaf7ff;
    font-size: clamp(1rem, 1.8vw, 1.24rem);
}

.seo-article-brand-card {
    background: rgba(255,255,255,.96);
    border-radius: 24px;
    padding: 18px;
    color: var(--primary);
    text-align: center;
    box-shadow: var(--shadow);
}

.seo-article-brand-card img {
    width: 190px;
    margin: 0 auto 12px;
}

.seo-article-brand-card strong,
.seo-article-brand-card span {
    display: block;
}

.seo-article-brand-card span {
    color: var(--muted);
    margin-top: 6px;
}

.seo-article-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 24px;
    align-items: start;
}

.seo-article-content {
    font-size: 1.04rem;
}

.seo-article-content h2 {
    margin: 32px 0 14px;
    font-size: clamp(1.45rem, 3vw, 2.15rem);
    line-height: 1.12;
}

.seo-lead {
    font-size: 1.18rem;
    color: #33485f;
    background: #f4f9fd;
    border-left: 5px solid var(--teal);
    padding: 18px;
    border-radius: 16px;
}

.seo-check-list {
    list-style: none;
    padding: 0;
    display: grid;
    gap: 12px;
}

.seo-check-list li {
    position: relative;
    padding: 14px 16px 14px 48px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    box-shadow: var(--shadow-soft);
}

.seo-check-list li::before {
    content: '✓';
    position: absolute;
    left: 14px;
    top: 13px;
    width: 26px;
    height: 26px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #eafff3;
    color: #087b43;
    font-weight: 950;
}

.seo-faq-list {
    display: grid;
    gap: 10px;
}

.seo-faq-list details {
    border: 1px solid var(--line);
    border-radius: 16px;
    background: #fff;
    padding: 14px 16px;
    box-shadow: var(--shadow-soft);
}

.seo-faq-list summary {
    cursor: pointer;
    font-weight: 950;
    color: var(--primary);
}

.seo-source-list {
    padding-left: 20px;
}

.seo-source-list a {
    color: var(--primary-2);
    font-weight: 900;
}

.seo-disclaimer {
    margin-top: 28px;
    padding: 16px;
    border-radius: 16px;
    background: #fff8e6;
    border: 1px solid #f7dda3;
    color: #76510b;
}

.seo-article-sidebar {
    position: sticky;
    top: calc(var(--header-height) + 18px);
    display: grid;
    gap: 16px;
}

.seo-filter-bar {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px auto;
    gap: 12px;
    align-items: center;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
    padding: 12px;
}

.seo-article-card {
    display: block;
    min-height: 245px;
    padding: 20px;
    border-radius: 22px;
    border: 1px solid var(--line);
    background: linear-gradient(135deg, #ffffff, #f4f9fd);
    box-shadow: var(--shadow-soft);
    transition: .18s ease;
}

.seo-article-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.seo-article-card h3 {
    margin: 14px 0 10px;
    font-size: 1.25rem;
    line-height: 1.18;
    color: var(--primary);
}

.seo-article-card p {
    color: var(--muted);
}

.seo-article-card strong {
    display: inline-flex;
    margin-top: 10px;
    color: var(--primary-2);
}

@media (max-width: 980px) {
    .seo-article-hero-grid,
    .seo-article-layout,
    .seo-filter-bar {
        grid-template-columns: 1fr;
    }

    .seo-article-sidebar {
        position: static;
    }
}

/* =========================================================
   V10 - Índice de cidades principais por país
   ========================================================= */
.city-index-grid {
    margin-bottom: 42px;
}

.cities-index-page .page-hero p {
    max-width: 900px;
}


/* =========================================================
   V13 - Visitantes online no painel admin
   ========================================================= */
.online-card .section-head {
    margin-bottom: 18px;
}

.online-mini-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 12px;
}

.online-mini-grid > div {
    border: 1px solid var(--line);
    border-radius: 18px;
    background: linear-gradient(135deg, #ffffff, #f4f9fd);
    padding: 16px;
    box-shadow: var(--shadow-soft);
}

.online-mini-grid span {
    display: block;
    color: var(--muted);
    font-weight: 850;
    font-size: .86rem;
}

.online-mini-grid strong {
    display: block;
    margin-top: 6px;
    color: var(--primary);
    font-size: 2rem;
    line-height: 1;
}

@media (max-width: 980px) {
    .online-mini-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 560px) {
    .online-mini-grid {
        grid-template-columns: 1fr;
    }
}


/* PACOTE LIMPO V59 - ajustes estáveis */
.home-cities-grid-v59 {
    align-items: stretch;
}

.home-city-card-v59 {
    overflow: hidden;
    min-height: 100%;
}

.home-city-card-v59 img {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

/* Chat automático sem avatar V48 - visual futurista original */
.il48-home-section,
section.il48-home-section {
    padding: 26px 0 34px !important;
}

.il48-home-box {
    position: relative !important;
    overflow: hidden !important;
    display: grid !important;
    grid-template-columns: minmax(0, 1.02fr) minmax(340px, .98fr) !important;
    gap: 28px !important;
    align-items: center !important;
    padding: clamp(26px, 4.5vw, 52px) !important;
    border-radius: 38px !important;
    color: #fff !important;
    isolation: isolate !important;
    background:
        radial-gradient(circle at 10% 0%, rgba(13, 255, 183, .32), transparent 30%),
        radial-gradient(circle at 90% 8%, rgba(255, 198, 80, .30), transparent 32%),
        radial-gradient(circle at 58% 118%, rgba(39, 135, 255, .22), transparent 44%),
        linear-gradient(135deg, #031625 0%, #06263f 46%, #073d62 100%) !important;
    border: 1px solid rgba(255,255,255,.16) !important;
    box-shadow: 0 28px 90px rgba(6,38,63,.26), inset 0 1px 0 rgba(255,255,255,.12) !important;
}

.il48-home-box::after {
    content: "" !important;
    position: absolute !important;
    inset: 0 !important;
    z-index: -1 !important;
    background-image:
        linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px) !important;
    background-size: 36px 36px !important;
    mask-image: radial-gradient(circle at 45% 50%, black, transparent 78%) !important;
}

.il48-kicker {
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    width: fit-content !important;
    padding: 9px 13px !important;
    border-radius: 999px !important;
    background: rgba(255,255,255,.11) !important;
    border: 1px solid rgba(255,255,255,.18) !important;
    color: #9df5d0 !important;
    font-size: .78rem !important;
    font-weight: 950 !important;
    letter-spacing: .10em !important;
    text-transform: uppercase !important;
}

.il48-home-content h2 {
    margin: 18px 0 12px !important;
    font-size: clamp(2rem, 4.6vw, 3.45rem) !important;
    line-height: .98 !important;
    letter-spacing: -.055em !important;
    color: #fff !important;
    text-wrap: balance !important;
}

.il48-home-content p {
    margin: 0 !important;
    max-width: 680px !important;
    color: rgba(255,255,255,.78) !important;
    font-size: 1.04rem !important;
    line-height: 1.68 !important;
}

.il48-examples {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 9px !important;
    margin-top: 20px !important;
}

.il48-examples button {
    appearance: none !important;
    border: 1px solid rgba(255,255,255,.16) !important;
    background: rgba(255,255,255,.10) !important;
    color: rgba(255,255,255,.90) !important;
    padding: 9px 12px !important;
    border-radius: 999px !important;
    font-weight: 900 !important;
    cursor: pointer !important;
    box-shadow: none !important;
    transition: .18s ease !important;
}

.il48-form-card {
    position: relative !important;
    padding: 18px !important;
    border-radius: 30px !important;
    background: rgba(255,255,255,.11) !important;
    border: 1px solid rgba(255,255,255,.18) !important;
    backdrop-filter: blur(18px) !important;
    box-shadow: 0 24px 55px rgba(0,0,0,.22) !important;
}

.il48-form {
    display: grid !important;
    gap: 12px !important;
    margin: 0 !important;
}

.il48-input {
    width: 100% !important;
    min-height: 66px !important;
    border: 1px solid rgba(255,255,255,.24) !important;
    border-radius: 22px !important;
    background: rgba(255,255,255,.97) !important;
    color: #122033 !important;
    padding: 0 18px !important;
    font-size: 1rem !important;
    outline: none !important;
    box-shadow: 0 18px 38px rgba(0,0,0,.14) !important;
}

.il48-button {
    min-height: 62px !important;
    border: 0 !important;
    border-radius: 22px !important;
    background: linear-gradient(135deg, #8292a6, #586a82) !important;
    color: #fff !important;
    font-weight: 1000 !important;
    font-size: 1rem !important;
    cursor: not-allowed !important;
    transition: .18s ease !important;
}

.il48-button.is-active {
    cursor: pointer !important;
    background: linear-gradient(135deg, #0bae5b, #f5b231) !important;
    color: #06263f !important;
    box-shadow: 0 20px 44px rgba(11,174,91,.30) !important;
}

.il48-form small {
    color: rgba(255,255,255,.74) !important;
    font-size: .86rem !important;
    line-height: 1.4 !important;
}

.il48-modal {
    position: fixed !important;
    inset: 0 !important;
    z-index: 99999 !important;
    display: none !important;
    align-items: flex-end !important;
    justify-content: flex-end !important;
    padding: 22px !important;
    background: rgba(3,18,31,.38) !important;
    backdrop-filter: blur(8px) !important;
}

.il48-modal.is-open {
    display: flex !important;
}

.il48-panel {
    position: relative !important;
    width: min(620px, calc(100vw - 32px)) !important;
    height: min(760px, calc(100vh - 32px)) !important;
    max-height: calc(100vh - 32px) !important;
    overflow: hidden !important;
    display: flex !important;
    flex-direction: column !important;
    padding: 24px !important;
    border-radius: 30px !important;
    color: #fff !important;
    background:
        radial-gradient(circle at top left, rgba(11,174,91,.38), transparent 34%),
        radial-gradient(circle at top right, rgba(245,178,49,.28), transparent 30%),
        linear-gradient(135deg, #051d32, #06263f 48%, #0a4c78) !important;
    border: 1px solid rgba(255,255,255,.18) !important;
    box-shadow: 0 30px 90px rgba(0,0,0,.35) !important;
}

.il48-close {
    position: absolute !important;
    top: 14px !important;
    right: 14px !important;
    width: 38px !important;
    height: 38px !important;
    border: 0 !important;
    border-radius: 999px !important;
    background: rgba(255,255,255,.14) !important;
    color: #fff !important;
    font-size: 1.6rem !important;
    cursor: pointer !important;
    z-index: 2 !important;
}

.il48-badge {
    display: inline-flex !important;
    width: fit-content !important;
    padding: 8px 12px !important;
    border-radius: 999px !important;
    background: rgba(255,255,255,.12) !important;
    border: 1px solid rgba(255,255,255,.16) !important;
    color: #9df5d0 !important;
    font-weight: 950 !important;
    font-size: .78rem !important;
    letter-spacing: .08em !important;
    text-transform: uppercase !important;
    margin-bottom: 14px !important;
}

.il48-body {
    flex: 0 0 245px !important;
    height: 245px !important;
    min-height: 245px !important;
    max-height: 245px !important;
    overflow-y: auto !important;
    padding: 18px 20px !important;
    border-radius: 22px !important;
    background: #fff !important;
    color: #142033 !important;
    border: 1px solid rgba(255,255,255,.22) !important;
    box-shadow: 0 16px 34px rgba(0,0,0,.16) !important;
    line-height: 1.68 !important;
    font-weight: 600 !important;
}

.il48-typing {
    display: none;
    align-items: center !important;
    gap: 8px !important;
    margin: 12px 0 0 !important;
    padding: 10px 13px !important;
    border-radius: 16px !important;
    background: rgba(255,255,255,.10) !important;
    border: 1px solid rgba(255,255,255,.16) !important;
    color: rgba(255,255,255,.84) !important;
    font-weight: 900 !important;
}

.il48-related {
    margin-top: 12px !important;
    padding: 16px !important;
    border-radius: 22px !important;
    background: rgba(255,255,255,.10) !important;
    border: 1px solid rgba(255,255,255,.16) !important;
}

.il48-actions {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 10px !important;
    margin-top: 12px !important;
}

.il48-primary,
.il48-secondary,
.il48-tiktok {
    min-height: 46px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 16px !important;
    padding: 11px 15px !important;
    font-weight: 950 !important;
    text-decoration: none !important;
    border: 0 !important;
    cursor: pointer !important;
}

.il48-primary {
    background: linear-gradient(135deg, #0bae5b, #f5b231) !important;
    color: #06263f !important;
}

.il48-secondary {
    background: rgba(255,255,255,.12) !important;
    color: #fff !important;
    border: 1px solid rgba(255,255,255,.16) !important;
}

.il48-tiktok {
    background: linear-gradient(135deg, #10151f, #25f4ee 48%, #fe2c55) !important;
    color: #fff !important;
    border: 1px solid rgba(255,255,255,.18) !important;
}

.il48-note {
    margin-top: auto !important;
    padding-top: 10px !important;
    color: rgba(255,255,255,.62) !important;
    line-height: 1.4 !important;
}

@media (max-width: 880px) {
    .il48-home-box {
        grid-template-columns: 1fr !important;
    }
}

@media (max-width: 620px) {
    .il48-home-box {
        border-radius: 28px !important;
        padding: 24px !important;
    }

    .il48-examples {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
    }

    .il48-modal {
        padding: 12px !important;
    }

    .il48-panel {
        width: 100% !important;
        height: calc(100vh - 24px) !important;
        max-height: calc(100vh - 24px) !important;
        border-radius: 24px !important;
        padding: 20px !important;
    }

    .il48-actions {
        display: grid !important;
        grid-template-columns: 1fr !important;
    }
}

/* CORREÇÃO FINAL CHAT V61 - evita botões cortados no rodapé */
.il48-modal {
    align-items: center !important;
    justify-content: center !important;
    padding: 16px !important;
    box-sizing: border-box !important;
}

.il48-panel {
    height: auto !important;
    max-height: calc(100vh - 40px) !important;
    max-height: calc(100dvh - 40px) !important;
    padding-bottom: 18px !important;
    overflow: hidden !important;
    box-sizing: border-box !important;
}

.il48-body {
    flex: 1 1 auto !important;
    min-height: 170px !important;
    max-height: 240px !important;
}

.il48-related {
    flex-shrink: 0 !important;
}

.il48-actions {
    flex-shrink: 0 !important;
    padding-bottom: 4px !important;
    margin-bottom: 2px !important;
}

.il48-note {
    flex-shrink: 0 !important;
    margin-top: 8px !important;
}

@media (max-height: 760px) {
    .il48-panel {
        max-height: calc(100vh - 24px) !important;
        max-height: calc(100dvh - 24px) !important;
        padding: 18px !important;
    }

    .il48-body {
        min-height: 120px !important;
        max-height: 185px !important;
    }

    .il48-related {
        padding: 12px !important;
    }

    .il48-panel h3 {
        font-size: 1.45rem !important;
        margin-bottom: 8px !important;
    }

    .il48-question {
        margin-bottom: 10px !important;
    }
}

@media (max-width: 620px) {
    .il48-modal {
        align-items: center !important;
        padding: 10px !important;
    }

    .il48-panel {
        height: auto !important;
        max-height: calc(100vh - 20px) !important;
        max-height: calc(100dvh - 20px) !important;
    }

    .il48-actions {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 8px !important;
    }
}

/* CORREÇÃO CHAT MODAL SCROLL V62
   Garante que o final do chat nunca fique cortado.
*/
.il48-modal {
    align-items: center !important;
    justify-content: center !important;
    padding: 14px !important;
    box-sizing: border-box !important;
    overflow-y: auto !important;
}

.il48-panel {
    width: min(620px, calc(100vw - 28px)) !important;
    height: auto !important;
    max-height: calc(100vh - 28px) !important;
    max-height: calc(100dvh - 28px) !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;
    padding: 22px 22px 28px !important;
    box-sizing: border-box !important;
    display: block !important;
}

/* A área branca da resposta fica menor para sobrar espaço para conteúdo relacionado e botões */
.il48-body {
    height: auto !important;
    min-height: 150px !important;
    max-height: 220px !important;
    overflow-y: auto !important;
    flex: none !important;
    box-sizing: border-box !important;
}

/* Impede blocos finais de ficarem esmagados */
.il48-related {
    margin-top: 12px !important;
    margin-bottom: 12px !important;
    flex: none !important;
}

.il48-actions {
    position: relative !important;
    z-index: 2 !important;
    margin-top: 12px !important;
    margin-bottom: 14px !important;
    padding-bottom: 8px !important;
    flex: none !important;
}

.il48-note {
    display: block !important;
    margin-top: 10px !important;
    margin-bottom: 0 !important;
    padding-bottom: 6px !important;
    flex: none !important;
}

/* Em notebook/tela menor, compacta mais ainda */
@media (max-height: 760px) {
    .il48-modal {
        align-items: flex-start !important;
        padding-top: 10px !important;
        padding-bottom: 10px !important;
    }

    .il48-panel {
        max-height: calc(100vh - 20px) !important;
        max-height: calc(100dvh - 20px) !important;
        padding: 18px 18px 24px !important;
    }

    .il48-badge {
        margin-bottom: 10px !important;
    }

    .il48-panel h3 {
        font-size: 1.34rem !important;
        margin-bottom: 8px !important;
    }

    .il48-question {
        padding: 10px 12px !important;
        margin-bottom: 10px !important;
    }

    .il48-body {
        min-height: 110px !important;
        max-height: 170px !important;
        padding: 14px 16px !important;
    }

    .il48-related {
        padding: 12px 14px !important;
    }

    .il48-related h4 {
        margin: 5px 0 !important;
        font-size: 1rem !important;
    }

    .il48-related p {
        line-height: 1.35 !important;
    }

    .il48-actions {
        gap: 8px !important;
    }

    .il48-primary,
    .il48-secondary,
    .il48-tiktok {
        min-height: 42px !important;
        padding: 9px 12px !important;
    }
}

@media (max-width: 620px) {
    .il48-modal {
        align-items: flex-start !important;
        padding: 8px !important;
    }

    .il48-panel {
        width: calc(100vw - 16px) !important;
        max-height: calc(100vh - 16px) !important;
        max-height: calc(100dvh - 16px) !important;
        border-radius: 22px !important;
        padding: 18px 16px 24px !important;
    }

    .il48-body {
        min-height: 120px !important;
        max-height: 190px !important;
    }

    .il48-actions {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 8px !important;
        margin-bottom: 12px !important;
    }
}


/* PARCEIROS CARROSSEL V64 */
.partners-home-v64 {
    padding-top: 28px;
    padding-bottom: 30px;
}

.partners-head-v64 {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 22px;
    margin-bottom: 18px;
}

.partners-kicker-v64 {
    display: inline-flex;
    margin-bottom: 8px;
    padding: 7px 11px;
    border-radius: 999px;
    background: rgba(11,174,91,.10);
    border: 1px solid rgba(11,174,91,.18);
    color: #08783d;
    font-size: .72rem;
    font-weight: 950;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.partners-head-v64 h2 {
    margin: 0;
    font-size: clamp(1.9rem, 4vw, 3rem);
    line-height: 1;
    letter-spacing: -.045em;
}

.partners-head-v64 p {
    margin: 8px 0 0;
    color: #657386;
    max-width: 720px;
}

.partners-announce-v64 {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    padding: 12px 18px;
    border-radius: 16px;
    text-decoration: none !important;
    font-weight: 950;
    color: #06263f !important;
    background: linear-gradient(135deg, #0bae5b, #f5b231);
    box-shadow: 0 18px 42px rgba(11,174,91,.24);
}

.partners-carousel-shell-v64 {
    position: relative;
}

.partners-carousel-v64 {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(285px, 31%);
    gap: 16px;
    overflow-x: auto;
    padding: 3px 3px 15px;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
}

.partner-card-v64 {
    overflow: hidden;
    scroll-snap-align: start;
    border-radius: 24px;
    background: #fff;
    border: 1px solid #dce7ef;
    box-shadow: 0 16px 38px rgba(6,38,63,.08);
}

.partner-image-v64 {
    position: relative;
    min-height: 145px;
    background: linear-gradient(135deg, #06263f, #0a4c78);
}

.partner-image-v64 img {
    display: block;
    width: 100%;
    height: 155px;
    object-fit: cover;
}

.partner-image-v64 span {
    position: absolute;
    left: 14px;
    bottom: 14px;
    padding: 7px 10px;
    border-radius: 999px;
    background: rgba(255,255,255,.92);
    color: #06263f;
    font-size: .74rem;
    font-weight: 950;
}

.partner-content-v64 {
    padding: 18px;
}

.partner-content-v64 strong {
    color: #0a4c78;
    font-weight: 950;
}

.partner-content-v64 h3 {
    margin: 7px 0 9px;
    color: #122033;
    line-height: 1.15;
}

.partner-content-v64 p {
    color: #657386;
    line-height: 1.55;
    min-height: 64px;
}

.partner-content-v64 a {
    display: inline-flex;
    margin-top: 10px;
    color: #0a4c78;
    font-weight: 950;
    text-decoration: none;
}

.partners-arrow-v64 {
    position: absolute;
    top: 50%;
    z-index: 5;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 999px;
    background: #06263f;
    color: #fff;
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
    box-shadow: 0 14px 34px rgba(6,38,63,.22);
}

.partners-prev-v64 {
    left: -16px;
}

.partners-next-v64 {
    right: -16px;
}

.partner-card-empty-v64 {
    grid-column: span 2;
}

@media (max-width: 900px) {
    .partners-head-v64 {
        display: block;
    }

    .partners-announce-v64 {
        margin-top: 14px;
    }

    .partners-carousel-v64 {
        grid-auto-columns: minmax(260px, 78%);
    }
}

@media (max-width: 620px) {
    .partners-carousel-v64 {
        grid-auto-columns: minmax(245px, 86%);
    }

    .partners-arrow-v64 {
        display: none;
    }
}


/* PARCEIROS CARDS PEQUENOS V66 */
.partners-home-v64 {
    padding-top: 24px;
    padding-bottom: 26px;
}

.partners-head-v64 {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 20px;
    margin-bottom: 18px;
}

.partners-head-v64 p {
    margin: 8px 0 0;
    max-width: 760px;
}

.partners-carousel-shell-v64 {
    position: relative;
}

.partners-carousel-v64 {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 380px;
    gap: 18px;
    overflow-x: auto;
    padding: 4px 4px 14px;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
}

.partner-card-v64 {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    min-height: 100%;
    scroll-snap-align: start;
    border-radius: 22px;
    background: #ffffff;
    border: 1px solid #dce7ef;
    box-shadow: 0 14px 32px rgba(6,38,63,.08);
}

.partner-image-v64 {
    position: relative;
    min-height: auto;
    background: linear-gradient(135deg, #06263f, #0a4c78);
}

.partner-image-v64 img {
    display: block;
    width: 100%;
    height: 190px;
    object-fit: cover;
}

.partner-image-v64 span {
    position: absolute;
    left: 14px;
    top: 14px;
    bottom: auto;
    padding: 7px 10px;
    border-radius: 999px;
    background: rgba(255,255,255,.94);
    color: #7b5a13;
    font-size: .74rem;
    font-weight: 900;
}

.partner-content-v64 {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 16px 18px 18px;
}

.partner-content-v64 strong {
    color: #0a4c78;
    font-weight: 900;
    font-size: .98rem;
}

.partner-content-v64 h3 {
    margin: 0;
    color: #122033;
    font-size: 1.05rem;
    line-height: 1.22;
}

.partner-content-v64 p {
    margin: 0;
    color: #657386;
    line-height: 1.58;
    min-height: 76px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.partner-content-v64 a {
    display: inline-flex;
    align-items: center;
    margin-top: 2px;
    color: #0a4c78;
    font-weight: 900;
    text-decoration: none;
}

.partner-card-empty-v64 {
    justify-content: center;
}

.partners-arrow-v64 {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 999px;
    background: #06263f;
    color: #fff;
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
    box-shadow: 0 14px 34px rgba(6,38,63,.22);
}

.partners-prev-v64 { left: -18px; }
.partners-next-v64 { right: -18px; }

@media (max-width: 1100px) {
    .partners-carousel-v64 {
        grid-auto-columns: 340px;
    }
}

@media (max-width: 900px) {
    .partners-head-v64 {
        display: block;
    }

    .partners-announce-v64 {
        margin-top: 14px;
    }

    .partners-carousel-v64 {
        grid-auto-columns: minmax(280px, 78vw);
    }
}

@media (max-width: 620px) {
    .partners-carousel-v64 {
        grid-auto-columns: minmax(260px, 86vw);
    }

    .partner-image-v64 img {
        height: 165px;
    }

    .partners-arrow-v64 {
        display: none;
    }
}


/* PARCEIROS BANNERS AUTO V67 */
.partners-home-v64 {
    padding-top: 24px;
    padding-bottom: 28px;
}

.partners-head-v64 {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 20px;
    margin-bottom: 18px;
}

.partners-kicker-v64 {
    display: inline-flex;
    margin-bottom: 8px;
    padding: 7px 11px;
    border-radius: 999px;
    background: rgba(11,174,91,.10);
    border: 1px solid rgba(11,174,91,.18);
    color: #08783d;
    font-size: .72rem;
    font-weight: 950;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.partners-head-v64 h2 {
    margin: 0;
    font-size: clamp(1.9rem, 4vw, 3rem);
    line-height: 1;
    letter-spacing: -.045em;
}

.partners-head-v64 p {
    margin: 8px 0 0;
    color: #657386;
    max-width: 760px;
}

.partners-announce-v64 {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    padding: 12px 18px;
    border-radius: 16px;
    text-decoration: none !important;
    font-weight: 950;
    color: #06263f !important;
    background: linear-gradient(135deg, #0bae5b, #f5b231);
    box-shadow: 0 18px 42px rgba(11,174,91,.24);
}

.partners-carousel-shell-v64 {
    position: relative;
}

.partners-carousel-v64 {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 380px;
    gap: 18px;
    overflow-x: auto;
    padding: 4px 4px 15px;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
}

.partner-card-v64 {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    min-height: 100%;
    scroll-snap-align: start;
    border-radius: 22px;
    background: #ffffff;
    border: 1px solid #dce7ef;
    box-shadow: 0 14px 32px rgba(6,38,63,.08);
}

.partner-image-v64 {
    position: relative;
    min-height: auto;
    background: linear-gradient(135deg, #06263f, #0a4c78);
}

.partner-image-v64 img {
    display: block;
    width: 100%;
    height: 190px;
    object-fit: cover;
}

.partner-image-v64 span {
    position: absolute;
    left: 14px;
    top: 14px;
    bottom: auto;
    padding: 7px 10px;
    border-radius: 999px;
    background: rgba(255,255,255,.94);
    color: #7b5a13;
    font-size: .74rem;
    font-weight: 900;
}

.partner-content-v64 {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 16px 18px 18px;
}

.partner-content-v64 strong {
    color: #0a4c78;
    font-weight: 900;
    font-size: .98rem;
}

.partner-content-v64 h3 {
    margin: 0;
    color: #122033;
    font-size: 1.05rem;
    line-height: 1.22;
}

.partner-content-v64 p {
    margin: 0;
    color: #657386;
    line-height: 1.58;
    min-height: 76px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.partner-content-v64 a {
    display: inline-flex;
    align-items: center;
    margin-top: 2px;
    color: #0a4c78;
    font-weight: 900;
    text-decoration: none;
}

.partner-card-empty-v64 {
    justify-content: center;
}

.partners-arrow-v64 {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 999px;
    background: #06263f;
    color: #fff;
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
    box-shadow: 0 14px 34px rgba(6,38,63,.22);
}

.partners-prev-v64 { left: -18px; }
.partners-next-v64 { right: -18px; }

@media (max-width: 1100px) {
    .partners-carousel-v64 {
        grid-auto-columns: 340px;
    }
}

@media (max-width: 900px) {
    .partners-head-v64 {
        display: block;
    }

    .partners-announce-v64 {
        margin-top: 14px;
    }

    .partners-carousel-v64 {
        grid-auto-columns: minmax(280px, 78vw);
    }
}

@media (max-width: 620px) {
    .partners-carousel-v64 {
        grid-auto-columns: minmax(260px, 86vw);
    }

    .partner-image-v64 img {
        height: 165px;
    }

    .partners-arrow-v64 {
        display: none;
    }
}

/* PERFORMANCE V18 - estabilidade visual */
img[loading="lazy"]{content-visibility:auto}.city-card img,.location-card img{background:#eaf3f8}.hero,.page-hero,.city-hero-full{contain:layout paint}


/* PAGINA COMPLETA DO PARCEIRO V71 */
.partner-page-hero-v71{padding:42px 0 28px;background:radial-gradient(circle at 10% 0%,rgba(11,174,91,.14),transparent 34%),linear-gradient(180deg,#eef6fb 0%,#fff 100%)}
.partner-page-hero-grid-v71{display:grid;grid-template-columns:minmax(0,1fr) minmax(340px,520px);gap:28px;align-items:center}
.partner-page-copy-v71 h1{margin:12px 0 8px;font-size:clamp(2.2rem,5vw,4rem);line-height:.96;letter-spacing:-.055em}
.partner-page-copy-v71 h2{margin:0 0 12px;color:#0a4c78;font-size:clamp(1.3rem,2.4vw,2rem)}
.partner-page-copy-v71 p{color:#657386;font-size:1.08rem;line-height:1.65;max-width:720px}
.partner-page-actions-v71{display:flex;flex-wrap:wrap;gap:12px;margin-top:20px}
.partner-page-media-v71 img{width:100%;border-radius:28px;display:block;box-shadow:0 22px 55px rgba(6,38,63,.14);border:1px solid #dce7ef}
.partner-page-layout-v71{display:grid;grid-template-columns:minmax(0,1fr) 360px;gap:24px;align-items:start}
.partner-main-v71{display:grid;gap:18px}
.partner-sidebar-v71{display:grid;gap:18px;position:sticky;top:90px}
.partner-service-grid-v71{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:12px}
.partner-service-v71{display:flex;gap:10px;align-items:flex-start;padding:14px;border-radius:18px;background:#f4f8fb;border:1px solid #dce7ef}
.partner-service-v71 span{width:26px;height:26px;border-radius:999px;display:inline-flex;align-items:center;justify-content:center;background:#0bae5b;color:#fff;font-weight:900;flex:0 0 auto}
.partner-contact-v71 .full{width:100%;margin-bottom:14px}
.partner-map-v71{overflow:hidden;border-radius:18px;border:1px solid #dce7ef;height:250px;background:#eef6fb}
.partner-map-v71 iframe{width:100%;height:100%;border:0}
.partner-content-v64 h3 a{color:inherit;text-decoration:none}
.partner-image-v64{display:block;color:inherit;text-decoration:none}
@media(max-width:980px){.partner-page-hero-grid-v71,.partner-page-layout-v71{grid-template-columns:1fr}.partner-sidebar-v71{position:static}}
@media(max-width:620px){.partner-service-grid-v71{grid-template-columns:1fr}}

/* CADASTRO APROVACAO V72 */
.admin-pending-dot{display:inline-flex;width:10px;height:10px;border-radius:999px;background:#f5b231;margin-right:6px;}


/* AVISO LANCAMENTO CADASTRO V80 */
.launch-register-notice-v80 {
    margin-bottom: 22px;
    border: 1px solid rgba(218, 166, 47, .28);
    background:
        radial-gradient(circle at top left, rgba(218, 166, 47, .18), transparent 34%),
        linear-gradient(135deg, #ffffff 0%, #f8fbfd 100%);
}

.launch-register-notice-v80 h2 {
    margin: 12px 0 8px;
    font-size: clamp(1.5rem, 3vw, 2.3rem);
    letter-spacing: -.035em;
}

.launch-register-notice-v80 p {
    margin: 0;
    color: #657386;
    font-size: 1.05rem;
    line-height: 1.65;
    max-width: 850px;
}


/* BLOG WHATSAPP V82 */
.blog-whatsapp-signup-v82 {
    padding: 34px 0;
}

.blog-whatsapp-card-v82 {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(300px, .85fr);
    gap: 22px;
    align-items: stretch;
    border-radius: 30px;
    padding: clamp(20px, 4vw, 38px);
    background:
        radial-gradient(circle at top left, rgba(218, 166, 47, .18), transparent 34%),
        linear-gradient(135deg, #ffffff 0%, #f8fbfd 100%);
    border: 1px solid rgba(218, 166, 47, .24);
    box-shadow: 0 22px 70px rgba(8, 40, 69, .10);
}

.blog-whatsapp-copy-v82 h2 {
    margin: 14px 0 12px;
    font-size: clamp(1.8rem, 4vw, 3rem);
    line-height: 1.05;
    letter-spacing: -.045em;
}

.blog-whatsapp-copy-v82 p {
    color: #5f6f83;
    font-size: 1.06rem;
    line-height: 1.7;
    max-width: 760px;
}

.blog-whatsapp-actions-v82 {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 22px;
}

.blog-whatsapp-form-v82 {
    background: #fff;
    border: 1px solid rgba(16, 36, 58, .09);
    border-radius: 24px;
    padding: 22px;
    box-shadow: 0 15px 35px rgba(8, 40, 69, .08);
}

.blog-whatsapp-form-v82 h3 {
    margin-top: 0;
}

.blog-consent-v82 {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: .92rem;
    color: #637083;
    line-height: 1.45;
    margin: 12px 0 16px;
}

.blog-grid-v82 {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.blog-card-v82 {
    overflow: hidden;
    border-radius: 26px;
    background: #fff;
    border: 1px solid rgba(16, 36, 58, .08);
    box-shadow: 0 18px 45px rgba(8, 40, 69, .08);
}

.blog-card-image-v82 {
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #eef6fb;
}

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

.blog-card-v82:hover .blog-card-image-v82 img {
    transform: scale(1.04);
}

.blog-card-body-v82 {
    padding: 20px;
}

.blog-meta-v82 {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    color: #788596;
    font-size: .9rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.blog-card-body-v82 h2 {
    font-size: 1.25rem;
    line-height: 1.18;
    margin: 0 0 10px;
}

.blog-card-body-v82 h2 a {
    color: inherit;
    text-decoration: none;
}

.blog-card-body-v82 p {
    color: #647386;
    line-height: 1.6;
}

.blog-read-v82 {
    display: inline-flex;
    margin-top: 8px;
    font-weight: 900;
    text-decoration: none;
}

.blog-post-cover-v82 {
    position: relative;
    min-height: min(72vh, 620px);
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    background: #10243a;
}

.blog-post-cover-v82:after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(5, 23, 40, .20), rgba(5, 23, 40, .78));
}

.blog-post-cover-v82 > img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .92;
}

.blog-post-cover-content-v82 {
    position: relative;
    z-index: 2;
    padding-top: 120px;
    padding-bottom: 46px;
    color: #fff;
}

.blog-post-cover-content-v82 h1 {
    max-width: 980px;
    margin: 16px 0 16px;
    font-size: clamp(2.05rem, 6vw, 4.8rem);
    line-height: .98;
    letter-spacing: -.06em;
}

.blog-post-wrap-v82 {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 30px;
    padding-top: 36px;
    padding-bottom: 52px;
}

.blog-post-content-v82 {
    background: #fff;
    border-radius: 28px;
    padding: clamp(22px, 4vw, 46px);
    border: 1px solid rgba(16, 36, 58, .08);
    box-shadow: 0 18px 50px rgba(8, 40, 69, .08);
}

.blog-post-excerpt-v82 {
    font-size: 1.25rem;
    line-height: 1.65;
    color: #516174;
    font-weight: 700;
}

.blog-text-v82 {
    color: #26394e;
    line-height: 1.85;
    font-size: 1.06rem;
}

.blog-video-v82 {
    overflow: hidden;
    border-radius: 24px;
    margin: 24px 0;
    background: #0b2239;
    aspect-ratio: 16 / 9;
}

.blog-video-v82 iframe,
.blog-video-v82 video {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.blog-sidebar-v82 .blog-whatsapp-signup-v82 {
    padding: 0;
}

.blog-sidebar-v82 .container {
    width: 100%;
    padding: 0;
}

.blog-sidebar-v82 .blog-whatsapp-card-v82 {
    grid-template-columns: 1fr;
    padding: 20px;
}

.blog-sidebar-v82 .blog-whatsapp-copy-v82 h2 {
    font-size: 1.7rem;
}

.blog-back-v82 {
    margin-top: 26px;
}

@media (max-width: 980px) {
    .blog-grid-v82 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .blog-post-wrap-v82 {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 760px) {
    .blog-whatsapp-card-v82 {
        grid-template-columns: 1fr;
        padding: 18px;
        border-radius: 24px;
    }

    .blog-whatsapp-actions-v82 .btn,
    .blog-whatsapp-form-v82 .btn {
        width: 100%;
        justify-content: center;
    }

    .blog-grid-v82 {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .blog-card-v82 {
        border-radius: 22px;
    }

    .blog-post-cover-v82 {
        min-height: 520px;
    }

    .blog-post-cover-content-v82 {
        padding-bottom: 30px;
    }

    .blog-post-content-v82 {
        border-radius: 22px;
    }
}


/* BLOG CLASSICO V84 */
.blog-classic-hero-v84,
.blog-post-classic-hero-v84 {
    position: relative;
    min-height: 560px;
    display: flex;
    align-items: center;
    background-color: #12324d;
    background-size: cover;
    background-position: center;
    color: #fff;
    text-align: center;
    overflow: hidden;
}

.blog-classic-hero-v84:before,
.blog-post-classic-hero-v84:before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 18% 25%, rgba(255,255,255,.12), transparent 18%),
        radial-gradient(circle at 80% 70%, rgba(244,193,93,.15), transparent 22%);
    pointer-events: none;
}

.blog-classic-hero-inner-v84,
.blog-post-classic-hero-v84 .container {
    position: relative;
    z-index: 2;
    max-width: 1100px;
}

.blog-mini-label-v84,
.blog-section-label-v84 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #b98335;
    font-size: .78rem;
    line-height: 1;
    text-transform: uppercase;
    font-weight: 900;
    letter-spacing: .06em;
    border-bottom: 2px solid #c99345;
    padding-bottom: 8px;
    margin-bottom: 18px;
}

.blog-classic-hero-v84 .blog-mini-label-v84,
.blog-post-classic-hero-v84 .blog-mini-label-v84 {
    color: #f4c15d;
    border-bottom-color: #f4c15d;
}

.blog-classic-hero-v84 h1,
.blog-post-classic-hero-v84 h1 {
    max-width: 1040px;
    margin: 0 auto 18px;
    font-size: clamp(2rem, 5.3vw, 4.5rem);
    line-height: 1.03;
    letter-spacing: -.04em;
    text-transform: uppercase;
}

.blog-classic-hero-v84 p {
    max-width: 760px;
    margin: 0 auto 26px;
    font-size: clamp(1rem, 2vw, 1.22rem);
    line-height: 1.6;
    color: rgba(255,255,255,.92);
}

.blog-about-v84 {
    display: grid;
    grid-template-columns: minmax(0, .95fr) minmax(320px, .75fr);
    gap: clamp(28px, 5vw, 70px);
    align-items: center;
    padding-top: 64px;
    padding-bottom: 44px;
}

.blog-about-text-v84 h2,
.blog-title-center-v84 h2,
.blog-newsletter-card-v84 h2 {
    margin: 0 0 18px;
    color: #293545;
    font-size: clamp(1.6rem, 3.3vw, 2.65rem);
    line-height: 1.1;
    text-transform: uppercase;
}

.blog-about-text-v84 p {
    color: #566579;
    line-height: 1.85;
    font-size: 1.03rem;
    max-width: 760px;
}

.blog-about-image-v84 {
    border-radius: 4px;
    overflow: hidden;
    min-height: 330px;
    box-shadow: 0 18px 46px rgba(14, 36, 56, .13);
    background: #eef3f6;
}

.blog-about-image-v84 img {
    width: 100%;
    height: 100%;
    min-height: 330px;
    object-fit: cover;
    display: block;
}

.blog-search-v84 {
    padding: 16px 0 36px;
}

.blog-search-v84 form {
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr) auto;
    align-items: center;
    background: #f6f3f1;
    border: 1px solid rgba(41,53,69,.08);
    min-height: 56px;
}

.blog-search-v84 span {
    text-align: center;
    color: #a36f2d;
}

.blog-search-v84 input {
    border: 0;
    background: transparent;
    min-height: 56px;
    outline: 0;
    color: #293545;
    padding: 0 8px;
}

.blog-search-v84 button {
    border: 0;
    background: #bf8740;
    color: #fff;
    min-height: 56px;
    padding: 0 28px;
    font-weight: 900;
    cursor: pointer;
}

.blog-title-center-v84 {
    text-align: center;
    margin-bottom: 30px;
}

.blog-card-grid-v84 {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
}

.blog-classic-card-v84 {
    background: #fff;
    border: 1px solid #ececec;
    box-shadow: 0 10px 28px rgba(20, 35, 54, .06);
}

.blog-classic-card-image-v84 {
    display: block;
    aspect-ratio: 16 / 11;
    overflow: hidden;
    background: #eef3f6;
}

.blog-classic-card-image-v84 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .35s ease;
}

.blog-classic-card-v84:hover img {
    transform: scale(1.04);
}

.blog-classic-card-body-v84 {
    padding: 18px 18px 20px;
}

.blog-meta-classic-v84 {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    color: #8a8f97;
    font-size: .84rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.blog-classic-card-body-v84 h3 {
    margin: 0 0 10px;
    color: #293545;
    font-size: 1.12rem;
    line-height: 1.28;
}

.blog-classic-card-body-v84 h3 a {
    color: inherit;
    text-decoration: none;
}

.blog-classic-card-body-v84 p {
    color: #687486;
    line-height: 1.62;
    font-size: .96rem;
}

.blog-card-button-v84 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 8px;
    min-width: 112px;
    height: 36px;
    padding: 0 18px;
    background: #c99345;
    color: #fff !important;
    text-decoration: none;
    text-transform: uppercase;
    font-size: .76rem;
    font-weight: 900;
    border-radius: 2px;
}

.blog-topics-v84 {
    padding-top: 58px;
}

.blog-topic-grid-v84 {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.blog-topic-v84 {
    min-height: 180px;
    padding: 24px;
    background: #f4f1ed;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    color: #293545;
    text-decoration: none;
    text-align: center;
    border: 1px solid rgba(41,53,69,.07);
}

.blog-topic-v84 span {
    font-size: 2.2rem;
    margin-bottom: 16px;
}

.blog-topic-v84 strong {
    text-transform: uppercase;
    font-size: 1.05rem;
}

.blog-newsletter-v84 {
    padding-top: 58px;
    padding-bottom: 70px;
}

.blog-newsletter-card-v84 {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(340px, .85fr);
    gap: 28px;
    align-items: center;
    background: #f4e0bf;
    padding: clamp(24px, 5vw, 52px);
}

.blog-newsletter-card-v84 p {
    color: #5d6573;
    line-height: 1.7;
}

.blog-newsletter-card-v84 form {
    display: grid;
    gap: 12px;
}

.blog-newsletter-card-v84 input[type="text"] {
    min-height: 52px;
    border: 1px solid rgba(41,53,69,.12);
    background: #fff;
    padding: 0 16px;
    outline: 0;
}

.blog-newsletter-card-v84 label {
    display: flex;
    gap: 9px;
    color: #5d6573;
    font-size: .92rem;
    line-height: 1.4;
}

.blog-post-classic-hero-v84 {
    min-height: 600px;
}

.blog-post-classic-hero-v84 h1 {
    max-width: 1120px;
}

.blog-post-meta-v84 {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 18px;
    font-weight: 800;
    color: rgba(255,255,255,.92);
}

.blog-post-shell-v84 {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 36px;
    align-items: start;
    padding-top: 52px;
    padding-bottom: 72px;
}

.blog-post-main-v84 {
    min-width: 0;
    background: #fff;
}

.blog-post-lead-v84 {
    font-size: 1.32rem;
    line-height: 1.72;
    color: #46566b;
    font-weight: 700;
    margin-top: 0;
}

.blog-post-text-v84 {
    color: #26394e;
    line-height: 1.9;
    font-size: 1.08rem;
}

.blog-video-classic-v84 {
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #0b2239;
    margin: 28px 0;
}

.blog-video-classic-v84 iframe,
.blog-video-classic-v84 video {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.blog-post-actions-v84 {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.blog-post-sidebar-v84 {
    position: sticky;
    top: 94px;
    display: grid;
    gap: 18px;
}

.blog-side-card-v84 {
    background: #fff;
    border: 1px solid #ececec;
    padding: 20px;
    box-shadow: 0 10px 26px rgba(20,35,54,.06);
}

.blog-side-card-v84 h3 {
    margin: 0 0 12px;
    color: #293545;
    text-transform: uppercase;
}

.blog-side-card-v84 p {
    color: #687486;
    line-height: 1.6;
}

.blog-side-card-v84 form {
    display: grid;
    gap: 10px;
}

.blog-side-card-v84 input[type="text"] {
    width: 100%;
    min-height: 48px;
    border: 1px solid #e3e7ed;
    padding: 0 13px;
}

.blog-side-card-v84 label {
    display: flex;
    gap: 8px;
    color: #657385;
    font-size: .9rem;
}

.blog-side-list-v84 {
    display: grid;
    gap: 12px;
}

.blog-side-item-v84 {
    display: grid;
    grid-template-columns: 84px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    color: inherit;
    text-decoration: none;
    padding-bottom: 12px;
    border-bottom: 1px solid #eee;
}

.blog-side-item-v84:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.blog-side-item-v84 img {
    width: 84px;
    height: 70px;
    object-fit: cover;
    background: #eef3f6;
}

.blog-side-item-v84 strong {
    display: block;
    color: #293545;
    font-size: .9rem;
    line-height: 1.25;
}

.blog-side-item-v84 small {
    display: block;
    margin-top: 5px;
    color: #8a8f97;
}

.blog-tiktok-side-v84 {
    background: #f4f1ed;
}

@media (max-width: 980px) {
    .blog-about-v84,
    .blog-newsletter-card-v84,
    .blog-post-shell-v84 {
        grid-template-columns: 1fr;
    }

    .blog-card-grid-v84 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .blog-topic-grid-v84 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .blog-post-sidebar-v84 {
        position: static;
    }
}

@media (max-width: 700px) {
    .blog-classic-hero-v84,
    .blog-post-classic-hero-v84 {
        min-height: 520px;
        padding: 80px 0 54px;
    }

    .blog-about-v84 {
        padding-top: 42px;
    }

    .blog-card-grid-v84,
    .blog-topic-grid-v84 {
        grid-template-columns: 1fr;
    }

    .blog-search-v84 form {
        grid-template-columns: 44px minmax(0, 1fr);
    }

    .blog-search-v84 button {
        grid-column: 1 / -1;
        width: 100%;
    }

    .blog-newsletter-card-v84 {
        padding: 22px;
    }

    .blog-side-item-v84 {
        grid-template-columns: 88px minmax(0, 1fr);
    }

    .blog-side-item-v84 img {
        width: 88px;
        height: 72px;
    }
}

\n/* BLOG CLASSICO FOTOS REAIS V85 */\n.blog-classic-hero-v85,\n.blog-post-classic-hero-v85 {\n    position: relative;\n    min-height: 560px;\n    display: flex;\n    align-items: center;\n    background-color: #12324d;\n    background-size: cover;\n    background-position: center;\n    color: #fff;\n    text-align: center;\n    overflow: hidden;\n}\n\n.blog-classic-hero-v85:before,\n.blog-post-classic-hero-v85:before {\n    content: "";\n    position: absolute;\n    inset: 0;\n    background:\n        radial-gradient(circle at 18% 25%, rgba(255,255,255,.12), transparent 18%),\n        radial-gradient(circle at 80% 70%, rgba(244,193,93,.15), transparent 22%);\n    pointer-events: none;\n}\n\n.blog-classic-hero-inner-v85,\n.blog-post-classic-hero-v85 .container {\n    position: relative;\n    z-index: 2;\n    max-width: 1100px;\n}\n\n.blog-mini-label-v85,\n.blog-section-label-v85 {\n    display: inline-flex;\n    align-items: center;\n    justify-content: center;\n    color: #b98335;\n    font-size: .78rem;\n    line-height: 1;\n    text-transform: uppercase;\n    font-weight: 900;\n    letter-spacing: .06em;\n    border-bottom: 2px solid #c99345;\n    padding-bottom: 8px;\n    margin-bottom: 18px;\n}\n\n.blog-classic-hero-v85 .blog-mini-label-v85,\n.blog-post-classic-hero-v85 .blog-mini-label-v85 {\n    color: #f4c15d;\n    border-bottom-color: #f4c15d;\n}\n\n.blog-classic-hero-v85 h1,\n.blog-post-classic-hero-v85 h1 {\n    max-width: 1040px;\n    margin: 0 auto 18px;\n    font-size: clamp(2rem, 5.3vw, 4.5rem);\n    line-height: 1.03;\n    letter-spacing: -.04em;\n    text-transform: uppercase;\n}\n\n.blog-classic-hero-v85 p {\n    max-width: 760px;\n    margin: 0 auto 26px;\n    font-size: clamp(1rem, 2vw, 1.22rem);\n    line-height: 1.6;\n    color: rgba(255,255,255,.92);\n}\n\n.blog-about-v85 {\n    display: grid;\n    grid-template-columns: minmax(0, .95fr) minmax(320px, .75fr);\n    gap: clamp(28px, 5vw, 70px);\n    align-items: center;\n    padding-top: 64px;\n    padding-bottom: 44px;\n}\n\n.blog-about-text-v85 h2,\n.blog-title-center-v85 h2,\n.blog-newsletter-card-v85 h2 {\n    margin: 0 0 18px;\n    color: #293545;\n    font-size: clamp(1.6rem, 3.3vw, 2.65rem);\n    line-height: 1.1;\n    text-transform: uppercase;\n}\n\n.blog-about-text-v85 p {\n    color: #566579;\n    line-height: 1.85;\n    font-size: 1.03rem;\n    max-width: 760px;\n}\n\n.blog-about-image-v85 {\n    border-radius: 4px;\n    overflow: hidden;\n    min-height: 330px;\n    box-shadow: 0 18px 46px rgba(14, 36, 56, .13);\n    background: #eef3f6;\n}\n\n.blog-about-image-v85 img {\n    width: 100%;\n    height: 100%;\n    min-height: 330px;\n    object-fit: cover;\n    display: block;\n}\n\n.blog-search-v85 {\n    padding: 16px 0 36px;\n}\n\n.blog-search-v85 form {\n    display: grid;\n    grid-template-columns: 52px minmax(0, 1fr) auto;\n    align-items: center;\n    background: #f6f3f1;\n    border: 1px solid rgba(41,53,69,.08);\n    min-height: 56px;\n}\n\n.blog-search-v85 span {\n    text-align: center;\n    color: #a36f2d;\n}\n\n.blog-search-v85 input {\n    border: 0;\n    background: transparent;\n    min-height: 56px;\n    outline: 0;\n    color: #293545;\n    padding: 0 8px;\n}\n\n.blog-search-v85 button {\n    border: 0;\n    background: #bf8740;\n    color: #fff;\n    min-height: 56px;\n    padding: 0 28px;\n    font-weight: 900;\n    cursor: pointer;\n}\n\n.blog-title-center-v85 {\n    text-align: center;\n    margin-bottom: 30px;\n}\n\n.blog-card-grid-v85 {\n    display: grid;\n    grid-template-columns: repeat(3, minmax(0, 1fr));\n    gap: 28px;\n}\n\n.blog-classic-card-v85 {\n    background: #fff;\n    border: 1px solid #ececec;\n    box-shadow: 0 10px 28px rgba(20, 35, 54, .06);\n}\n\n.blog-classic-card-image-v85 {\n    display: block;\n    aspect-ratio: 16 / 11;\n    overflow: hidden;\n    background: #eef3f6;\n}\n\n.blog-classic-card-image-v85 img {\n    width: 100%;\n    height: 100%;\n    object-fit: cover;\n    display: block;\n    transition: transform .35s ease;\n}\n\n.blog-classic-card-v85:hover img {\n    transform: scale(1.04);\n}\n\n.blog-classic-card-body-v85 {\n    padding: 18px 18px 20px;\n}\n\n.blog-meta-classic-v85 {\n    display: flex;\n    gap: 10px;\n    flex-wrap: wrap;\n    color: #8a8f97;\n    font-size: .84rem;\n    margin-bottom: 10px;\n    font-weight: 700;\n}\n\n.blog-classic-card-body-v85 h3 {\n    margin: 0 0 10px;\n    color: #293545;\n    font-size: 1.12rem;\n    line-height: 1.28;\n}\n\n.blog-classic-card-body-v85 h3 a {\n    color: inherit;\n    text-decoration: none;\n}\n\n.blog-classic-card-body-v85 p {\n    color: #687486;\n    line-height: 1.62;\n    font-size: .96rem;\n}\n\n.blog-card-button-v85 {\n    display: inline-flex;\n    align-items: center;\n    justify-content: center;\n    margin-top: 8px;\n    min-width: 112px;\n    height: 36px;\n    padding: 0 18px;\n    background: #c99345;\n    color: #fff !important;\n    text-decoration: none;\n    text-transform: uppercase;\n    font-size: .76rem;\n    font-weight: 900;\n    border-radius: 2px;\n}\n\n.blog-topics-v85 {\n    padding-top: 58px;\n}\n\n.blog-topic-grid-v85 {\n    display: grid;\n    grid-template-columns: repeat(4, minmax(0, 1fr));\n    gap: 18px;\n}\n\n.blog-topic-v85 {\n    min-height: 180px;\n    padding: 24px;\n    background: #f4f1ed;\n    display: flex;\n    flex-direction: column;\n    align-items: center;\n    justify-content: flex-end;\n    color: #293545;\n    text-decoration: none;\n    text-align: center;\n    border: 1px solid rgba(41,53,69,.07);\n}\n\n.blog-topic-v85 span {\n    font-size: 2.2rem;\n    margin-bottom: 16px;\n}\n\n.blog-topic-v85 strong {\n    text-transform: uppercase;\n    font-size: 1.05rem;\n}\n\n.blog-newsletter-v85 {\n    padding-top: 58px;\n    padding-bottom: 70px;\n}\n\n.blog-newsletter-card-v85 {\n    display: grid;\n    grid-template-columns: minmax(0, .9fr) minmax(340px, .85fr);\n    gap: 28px;\n    align-items: center;\n    background: #f4e0bf;\n    padding: clamp(24px, 5vw, 52px);\n}\n\n.blog-newsletter-card-v85 p {\n    color: #5d6573;\n    line-height: 1.7;\n}\n\n.blog-newsletter-card-v85 form {\n    display: grid;\n    gap: 12px;\n}\n\n.blog-newsletter-card-v85 input[type="text"] {\n    min-height: 52px;\n    border: 1px solid rgba(41,53,69,.12);\n    background: #fff;\n    padding: 0 16px;\n    outline: 0;\n}\n\n.blog-newsletter-card-v85 label {\n    display: flex;\n    gap: 9px;\n    color: #5d6573;\n    font-size: .92rem;\n    line-height: 1.4;\n}\n\n.blog-post-classic-hero-v85 {\n    min-height: 600px;\n}\n\n.blog-post-classic-hero-v85 h1 {\n    max-width: 1120px;\n}\n\n.blog-post-meta-v85 {\n    display: flex;\n    justify-content: center;\n    flex-wrap: wrap;\n    gap: 18px;\n    font-weight: 800;\n    color: rgba(255,255,255,.92);\n}\n\n.blog-post-shell-v85 {\n    display: grid;\n    grid-template-columns: minmax(0, 1fr) 340px;\n    gap: 36px;\n    align-items: start;\n    padding-top: 52px;\n    padding-bottom: 72px;\n}\n\n.blog-post-main-v85 {\n    min-width: 0;\n    background: #fff;\n}\n\n.blog-post-lead-v85 {\n    font-size: 1.32rem;\n    line-height: 1.72;\n    color: #46566b;\n    font-weight: 700;\n    margin-top: 0;\n}\n\n.blog-post-text-v85 {\n    color: #26394e;\n    line-height: 1.9;\n    font-size: 1.08rem;\n}\n\n.blog-video-classic-v85 {\n    aspect-ratio: 16 / 9;\n    overflow: hidden;\n    background: #0b2239;\n    margin: 28px 0;\n}\n\n.blog-video-classic-v85 iframe,\n.blog-video-classic-v85 video {\n    width: 100%;\n    height: 100%;\n    border: 0;\n    display: block;\n}\n\n.blog-post-actions-v85 {\n    display: flex;\n    flex-wrap: wrap;\n    gap: 12px;\n    margin-top: 30px;\n}\n\n.blog-post-sidebar-v85 {\n    position: sticky;\n    top: 94px;\n    display: grid;\n    gap: 18px;\n}\n\n.blog-side-card-v85 {\n    background: #fff;\n    border: 1px solid #ececec;\n    padding: 20px;\n    box-shadow: 0 10px 26px rgba(20,35,54,.06);\n}\n\n.blog-side-card-v85 h3 {\n    margin: 0 0 12px;\n    color: #293545;\n    text-transform: uppercase;\n}\n\n.blog-side-card-v85 p {\n    color: #687486;\n    line-height: 1.6;\n}\n\n.blog-side-card-v85 form {\n    display: grid;\n    gap: 10px;\n}\n\n.blog-side-card-v85 input[type="text"] {\n    width: 100%;\n    min-height: 48px;\n    border: 1px solid #e3e7ed;\n    padding: 0 13px;\n}\n\n.blog-side-card-v85 label {\n    display: flex;\n    gap: 8px;\n    color: #657385;\n    font-size: .9rem;\n}\n\n.blog-side-list-v85 {\n    display: grid;\n    gap: 12px;\n}\n\n.blog-side-item-v85 {\n    display: grid;\n    grid-template-columns: 84px minmax(0, 1fr);\n    gap: 12px;\n    align-items: center;\n    color: inherit;\n    text-decoration: none;\n    padding-bottom: 12px;\n    border-bottom: 1px solid #eee;\n}\n\n.blog-side-item-v85:last-child {\n    border-bottom: 0;\n    padding-bottom: 0;\n}\n\n.blog-side-item-v85 img {\n    width: 84px;\n    height: 70px;\n    object-fit: cover;\n    background: #eef3f6;\n}\n\n.blog-side-item-v85 strong {\n    display: block;\n    color: #293545;\n    font-size: .9rem;\n    line-height: 1.25;\n}\n\n.blog-side-item-v85 small {\n    display: block;\n    margin-top: 5px;\n    color: #8a8f97;\n}\n\n.blog-tiktok-side-v85 {\n    background: #f4f1ed;\n}\n\n@media (max-width: 980px) {\n    .blog-about-v85,\n    .blog-newsletter-card-v85,\n    .blog-post-shell-v85 {\n        grid-template-columns: 1fr;\n    }\n\n    .blog-card-grid-v85 {\n        grid-template-columns: repeat(2, minmax(0, 1fr));\n    }\n\n    .blog-topic-grid-v85 {\n        grid-template-columns: repeat(2, minmax(0, 1fr));\n    }\n\n    .blog-post-sidebar-v85 {\n        position: static;\n    }\n}\n\n@media (max-width: 700px) {\n    .blog-classic-hero-v85,\n    .blog-post-classic-hero-v85 {\n        min-height: 520px;\n        padding: 80px 0 54px;\n    }\n\n    .blog-about-v85 {\n        padding-top: 42px;\n    }\n\n    .blog-card-grid-v85,\n    .blog-topic-grid-v85 {\n        grid-template-columns: 1fr;\n    }\n\n    .blog-search-v85 form {\n        grid-template-columns: 44px minmax(0, 1fr);\n    }\n\n    .blog-search-v85 button {\n        grid-column: 1 / -1;\n        width: 100%;\n    }\n\n    .blog-newsletter-card-v85 {\n        padding: 22px;\n    }\n\n    .blog-side-item-v85 {\n        grid-template-columns: 88px minmax(0, 1fr);\n    }\n\n    .blog-side-item-v85 img {\n        width: 88px;\n        height: 72px;\n    }\n}\n


/* HOME CTA BLOG CARDS V86 */
.home-novidades-v86 {
    padding: 28px 0;
}

.home-novidades-card-v86 {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 440px;
    gap: 22px;
    align-items: center;
    background:
        radial-gradient(circle at top left, rgba(218,166,47,.16), transparent 34%),
        linear-gradient(135deg, #ffffff 0%, #eef6fb 100%);
    border: 1px solid rgba(16, 36, 58, .08);
    border-radius: 28px;
    padding: clamp(22px, 4vw, 38px);
    box-shadow: 0 18px 50px rgba(8,40,69,.08);
}

.home-novidades-card-v86 h2 {
    margin: 12px 0 10px;
    font-size: clamp(1.7rem, 3.3vw, 2.8rem);
    line-height: 1.08;
    letter-spacing: -.04em;
}

.home-novidades-card-v86 p {
    margin: 0;
    color: #627186;
    line-height: 1.7;
    font-size: 1.04rem;
}

.home-novidades-actions-v86 {
    display: grid;
    gap: 12px;
}

.home-novidades-actions-v86 .btn {
    width: 100%;
    justify-content: center;
}

.blog-compact-hero-v86 {
    min-height: 420px;
    display: flex;
    align-items: center;
    text-align: center;
    color: #fff;
    background-size: cover;
    background-position: center;
}

.blog-compact-hero-inner-v86 {
    max-width: 960px;
}

.blog-compact-logo-v86 {
    display: inline-block;
    margin-bottom: 12px;
    color: #f4c15d;
    text-transform: uppercase;
    font-weight: 900;
    letter-spacing: .08em;
    border-bottom: 2px solid #f4c15d;
    padding-bottom: 8px;
}

.blog-compact-hero-v86 h1 {
    max-width: 980px;
    margin: 0 auto 12px;
    font-size: clamp(2rem, 4vw, 3.7rem);
    line-height: 1.05;
    letter-spacing: -.045em;
    text-transform: uppercase;
}

.blog-compact-hero-v86 p {
    max-width: 740px;
    margin: 0 auto 22px;
    font-size: 1.1rem;
    line-height: 1.6;
}

.blog-compact-about-v86 {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 430px;
    gap: 28px;
    align-items: end;
    padding-top: 42px;
    padding-bottom: 28px;
}

.blog-label-v86 {
    display: inline-block;
    color: #b98335;
    text-transform: uppercase;
    font-size: .78rem;
    font-weight: 900;
    letter-spacing: .06em;
    border-bottom: 2px solid #c99345;
    padding-bottom: 7px;
    margin-bottom: 12px;
}

.blog-compact-about-v86 h2,
.blog-title-center-v86 h2,
.blog-compact-newsletter-card-v86 h2 {
    margin: 0 0 10px;
    color: #293545;
    font-size: clamp(1.55rem, 3vw, 2.4rem);
    line-height: 1.1;
    text-transform: uppercase;
}

.blog-compact-about-v86 p {
    color: #5f6f83;
    line-height: 1.75;
    margin-bottom: 0;
}

.blog-compact-search-v86 {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 110px;
    background: #f6f3f1;
    border: 1px solid rgba(41,53,69,.08);
}

.blog-compact-search-v86 input {
    border: 0;
    background: transparent;
    min-height: 52px;
    padding: 0 15px;
    outline: 0;
}

.blog-compact-search-v86 button {
    border: 0;
    background: #bf8740;
    color: #fff;
    font-weight: 900;
    cursor: pointer;
}

.blog-title-center-v86 {
    text-align: center;
    margin-bottom: 26px;
}

.blog-compact-grid-v86 {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.blog-compact-card-v86 {
    background: #fff;
    border: 1px solid #ececec;
    box-shadow: 0 10px 24px rgba(20,35,54,.06);
    overflow: hidden;
}

.blog-compact-img-v86 {
    display: block;
    aspect-ratio: 16 / 9.5;
    background: #eef3f6;
    overflow: hidden;
}

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

.blog-compact-card-v86:hover .blog-compact-img-v86 img {
    transform: scale(1.04);
}

.blog-compact-body-v86 {
    padding: 16px;
}

.blog-compact-meta-v86 {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    color: #8893a2;
    font-size: .78rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.blog-compact-body-v86 h3 {
    margin: 0 0 8px;
    font-size: 1.05rem;
    line-height: 1.25;
}

.blog-compact-body-v86 h3 a {
    color: inherit;
    text-decoration: none;
}

.blog-compact-body-v86 p {
    color: #657386;
    font-size: .92rem;
    line-height: 1.55;
    margin: 0 0 12px;
}

.blog-compact-button-v86 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 106px;
    height: 34px;
    padding: 0 16px;
    background: #c99345;
    color: #fff !important;
    text-decoration: none;
    text-transform: uppercase;
    font-size: .72rem;
    font-weight: 900;
    border-radius: 2px;
}

.blog-compact-topics-v86 {
    padding-top: 44px;
}

.blog-topic-row-v86 {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.blog-topic-row-v86 a {
    background: #f4f1ed;
    border: 1px solid rgba(41,53,69,.08);
    min-height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #293545;
    text-decoration: none;
    font-weight: 900;
    text-align: center;
}

.blog-compact-newsletter-v86 {
    padding-top: 44px;
    padding-bottom: 60px;
}

.blog-compact-newsletter-card-v86 {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 430px;
    gap: 28px;
    align-items: center;
    background: #f4e0bf;
    padding: clamp(22px, 4vw, 42px);
}

.blog-compact-newsletter-card-v86 p {
    color: #5d6573;
    line-height: 1.7;
}

.blog-compact-newsletter-card-v86 form {
    display: grid;
    gap: 12px;
}

.blog-compact-newsletter-card-v86 input[type="text"] {
    min-height: 50px;
    border: 1px solid rgba(41,53,69,.12);
    background: #fff;
    padding: 0 15px;
    outline: 0;
}

.blog-compact-newsletter-card-v86 label {
    display: flex;
    gap: 9px;
    color: #5d6573;
    font-size: .92rem;
    line-height: 1.4;
}

@media (max-width: 980px) {
    .home-novidades-card-v86,
    .blog-compact-about-v86,
    .blog-compact-newsletter-card-v86 {
        grid-template-columns: 1fr;
    }

    .blog-compact-grid-v86 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .blog-topic-row-v86 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 700px) {
    .blog-compact-hero-v86 {
        min-height: 360px;
        padding: 70px 0 42px;
    }

    .blog-compact-grid-v86,
    .blog-topic-row-v86 {
        grid-template-columns: 1fr;
    }

    .blog-compact-search-v86 {
        grid-template-columns: 1fr;
    }

    .blog-compact-search-v86 button {
        min-height: 48px;
    }

    .home-novidades-actions-v86 .btn,
    .blog-compact-newsletter-card-v86 .btn {
        width: 100%;
        justify-content: center;
    }
}


/* ==========================================================================
   Países da União Europeia - V1
   ========================================================================== */
.country-facts-section {
    padding-top: 8px;
}

.country-facts-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.country-fact-card {
    min-height: 118px;
    background: linear-gradient(145deg, #ffffff 0%, #eff8fd 100%);
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 18px;
    box-shadow: var(--shadow-soft);
}

.country-fact-card span {
    display: block;
    margin-bottom: 8px;
    color: var(--muted);
    font-size: .82rem;
    font-weight: 900;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.country-fact-card strong {
    display: block;
    color: var(--text);
    font-size: 1.02rem;
    line-height: 1.45;
}

.empty-content-card {
    background: linear-gradient(145deg, #ffffff 0%, #f5fafc 100%);
    border: 1px dashed rgba(10, 76, 120, .28);
    border-radius: 22px;
    padding: 24px;
    color: var(--text);
}

.empty-content-card strong {
    display: block;
    margin-bottom: 8px;
    font-size: 1.05rem;
}

.empty-content-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.65;
}

@media (max-width: 980px) {
    .country-facts-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 620px) {
    .country-facts-grid {
        grid-template-columns: 1fr;
    }

    .country-fact-card {
        min-height: auto;
    }
}
