/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Arial, sans-serif;
    background: #f5f7fa;
    color: #1b1f23;
    line-height: 1.6;
    padding-top: 100px; /* compensa header fixo */
}

/* CONTAINER */
.bc-container {
    width: 95%;
    max-width: 1200px;
    margin: auto;
}

/* HEADER */
.bc-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 999;
}

.bc-header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* LOGO */
.bc-logo img {
    width: 180px;
    height: auto;
    transition: 0.3s ease;
    filter: drop-shadow(0 6px 12px rgba(0,0,0,0.25));
}

.bc-logo img:hover {
    transform: scale(1.05);
}
/* MENU DESKTOP */
.bc-menu {
    display: flex;
}

.bc-menu a {
    margin-left: 20px;
    text-decoration: none;
    color: #0d1b2a;
    font-weight: 500;
}

.bc-menu a:hover {
    color: #f97316;
}

/* BOTÃO HAMBÚRGUER */
.bc-toggle {
    display: none;
    font-size: 28px;
    cursor: pointer;
    color: #0d1b2a;
    user-select: none;
    transition: 0.3s ease;
}

.bc-toggle:hover {
    color: #f97316;
}
/* HERO PREMIUM */

.bc-hero {
    background: url('/assets/img/hero.webp') center center/cover no-repeat;
    position: relative;
    padding: 120px 0;
}

.bc-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(5,18,35,0.95) 40%, rgba(5,18,35,0.6));
}

.bc-hero .bc-container {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.bc-hero-left h1 {
    max-width: 760px;
    font-size: 48px;
    line-height: 1.12;
    margin-bottom: 22px;
    color: #ffffff;
    letter-spacing: -0.03em;
}

.bc-hero-left p {
    max-width: 780px;
    font-size: 19px;
    line-height: 1.65;
    margin-bottom: 0;
    color: #e5e7eb;
}

.bc-hero-card {
    background: rgba(15, 23, 42, 0.68);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 34px;
    border-radius: 22px;
    color: white;
    border: 1px solid rgba(255,255,255,0.12);
    box-shadow: 0 24px 70px rgba(0,0,0,0.28);
}

.bc-hero-card h3 {
    margin-bottom: 22px;
    font-size: 21px;
    line-height: 1.3;
}

.bc-hero-card ul {
    list-style: none;
}

.bc-hero-card li {
    margin-bottom: 16px;
    font-size: 16px;
    line-height: 1.5;
    color: #f8fafc;
}

.bc-hero-card li:last-child {
    margin-bottom: 0;
}

/* BUSCA ESTILO ZAP */

.bc-busca-form {
    display: flex;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    max-width: 650px;
}

.bc-busca-form select,
.bc-busca-form input {
    border: none;
    padding: 15px;
    font-size: 15px;
    outline: none;
}

.bc-busca-form input {
    flex: 1;
}

.bc-busca-form button {
    background: #f97316;
    border: none;
    color: white;
    padding: 0 25px;
    font-size: 16px;
    cursor: pointer;
}

.bc-busca-form button:hover {
    background: #ea580c;
}

/* HERO CARD DIREITA */

.bc-hero-right {
    flex: 0 0 380px;
}

.bc-hero-card {
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(8px);
    padding: 30px;
    border-radius: 20px;
    color: white;
}

.bc-hero-card h3 {
    margin-bottom: 20px;
}

.bc-hero-card ul {
    list-style: none;
}

.bc-hero-card li {
    margin-bottom: 15px;
    font-size: 15px;
}

/* BUSCA */
.bc-busca-form {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.bc-busca-form input,
.bc-busca-form select {
    padding: 12px;
    border-radius: 6px;
    border: none;
    min-width: 150px;
}

.bc-busca-form button {
    background: #f97316;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 6px;
    cursor: pointer;
}

.bc-busca-form button:hover {
    background: #ea580c;
}

/* SECTIONS */
section {
    padding: 60px 0;
}

h2 {
    font-size: 28px;
    margin-bottom: 25px;
}

/* GRID IMÓVEIS */
.bc-grid-imoveis {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
    gap: 20px;
}

.bc-card-imovel {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    transition: 0.3s;
}

.bc-card-imovel:hover {
    transform: translateY(-5px);
}

.bc-card-imovel img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.bc-card-imovel h3 {
    padding: 15px;
    font-size: 18px;
}

.bc-card-imovel p {
    padding: 0 15px 15px;
    font-weight: bold;
    color: #0d1b2a;
}

/* FERRAMENTAS */
.bc-ferramentas {
    background: linear-gradient(180deg, #f5f7fa 0%, #eef3f8 100%);
    padding: 80px 0;
}

.bc-ferramentas h2 {
    max-width: 760px;
    margin: 0 auto 18px;
    text-align: center;
    font-size: 34px;
    line-height: 1.2;
    color: #0d1b2a;
}

.bc-ferramentas-intro {
    max-width: 880px;
    margin: 0 auto 42px;
    text-align: center;
    font-size: 17px;
    line-height: 1.7;
    color: #4b5563;
}

.bc-grid-ferramentas {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

.bc-card {
    position: relative;
    display: block;
    min-height: 260px;
    background: rgba(255, 255, 255, 0.92);
    padding: 28px;
    border-radius: 22px;
    text-decoration: none;
    color: #0d1b2a;
    border: 1px solid rgba(15, 23, 42, 0.06);
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    overflow: hidden;
}

.bc-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #f97316, #2563eb);
    opacity: 0;
    transition: opacity 0.25s ease;
}

.bc-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.14);
    border-color: rgba(249, 115, 22, 0.35);
}

.bc-card:hover::before {
    opacity: 1;
}

.bc-card h3 {
    font-size: 21px;
    line-height: 1.3;
    margin-bottom: 14px;
    color: #0d1b2a;
}

.bc-card p {
    font-size: 15.5px;
    line-height: 1.65;
    color: #334155;
}

.bc-card-futuro {
    background: rgba(255, 255, 255, 0.65);
    border: 1px dashed rgba(37, 99, 235, 0.28);
}

.bc-card-futuro h3,
.bc-card-futuro p {
    color: #334155;
}

.bc-card-selo {
    display: inline-flex;
    align-items: center;
    margin-bottom: 14px;
    padding: 5px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    background: #eef2ff;
    color: #1d4ed8;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

/* Tablet */
@media (max-width: 1024px) {
    .bc-grid-ferramentas {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 768px) {
    .bc-ferramentas {
        padding: 60px 0;
    }

    .bc-ferramentas h2 {
        font-size: 28px;
        text-align: left;
    }

    .bc-ferramentas-intro {
        text-align: left;
        font-size: 16px;
        margin-bottom: 30px;
    }

    .bc-grid-ferramentas {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .bc-card {
        min-height: auto;
        padding: 24px;
    }
}



/* BLOG */
.bc-blog {
    background: #f5f7fa;
    padding: 70px 0;
}

.bc-blog h2 {
    font-size: 32px;
    margin-bottom: 32px;
    color: #0d1b2a;
}

.bc-grid-blog {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

.bc-card-blog {
    display: block;
    background: #ffffff;
    border-radius: 22px;
    overflow: hidden;
    text-decoration: none;
    color: #0d1b2a;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
    border: 1px solid rgba(15, 23, 42, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.bc-card-blog:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.14);
}

.bc-card-blog img {
    width: 100%;
    height: 190px;
    object-fit: cover;
    display: block;
}

.bc-card-blog h3 {
    padding: 20px 20px 8px;
    font-size: 19px;
    line-height: 1.35;
    color: #0d1b2a;
}

.bc-card-blog p,
.bc-card-blog .bc-blog-link {
    display: block;
    padding: 0 20px 22px;
    font-size: 15px;
    color: #2563eb;
}

.bc-blog-mais {
    display: inline-block;
    margin-top: 28px;
    font-weight: 600;
    color: #f97316;
    text-decoration: none;
}

.bc-blog-mais:hover {
    text-decoration: underline;
}

/* Tablet */
@media (max-width: 1024px) {
    .bc-grid-blog {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 768px) {
    .bc-blog {
        padding: 55px 0;
    }

    .bc-blog h2 {
        font-size: 28px;
    }

    .bc-grid-blog {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .bc-card-blog img {
        height: 210px;
    }
}

.bc-card-blog {
    background: white;
    padding: 20px;
    border-radius: 10px;
}
/* YOUTUBE */
.bc-youtube {
    padding: 70px 0;
    background: #f6f9fc;
}

.bc-youtube h2 {
    text-align: center;
    color: #0f2742;
    font-size: clamp(30px, 4vw, 44px);
    margin-bottom: 34px;
}

.bc-grid-youtube {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
    align-items: stretch;
}

.bc-video-card {
    background: #ffffff;
    border-radius: 26px;
    overflow: hidden;
    box-shadow: 0 18px 45px rgba(15, 39, 66, 0.10);
    display: flex;
    flex-direction: column;
}

.bc-video-lite {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #0f2742;
    cursor: pointer;
    overflow: hidden;
}

.bc-video-lite img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 0.92;
}

.bc-video-play {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 62px;
    color: #ffffff;
    background: rgba(15, 39, 66, 0.18);
    text-shadow: 0 8px 24px rgba(0,0,0,0.45);
}

.bc-video-lite iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.bc-video-placeholder {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: linear-gradient(135deg, #0f2742, #185a8d);
    color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.bc-video-placeholder span {
    font-size: 48px;
}

.bc-video-placeholder strong {
    font-size: 22px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.bc-video-content {
    padding: 28px;
    flex: 1;
}

.bc-video-content h3 {
    color: #0f2742;
    font-size: 23px;
    line-height: 1.25;
    margin: 0 0 14px;
}

.bc-video-content p {
    color: #34495e;
    font-size: 16px;
    line-height: 1.7;
    margin: 0 0 22px;
}

.bc-video-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #20c7e8, #18b77b);
    color: #ffffff !important;
    text-decoration: none;
    font-weight: 800;
    padding: 13px 20px;
    border-radius: 999px;
    transition: .2s ease;
}

.bc-video-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 26px rgba(32, 199, 232, 0.25);
    text-decoration: none;
}

.bc-video-btn-secondary {
    background: #0f2742;
}

@media (max-width: 850px) {
    .bc-grid-youtube {
        grid-template-columns: 1fr;
    }

    .bc-youtube {
        padding: 48px 0;
    }

    .bc-video-content {
        padding: 24px;
    }
}

/* FOOTER */
.bc-footer {
    background: #0d1b2a;
    color: white;
    padding: 40px 0;
}

.bc-footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px,1fr));
    gap: 20px;
}

.bc-footer a {
    color: #f97316;
    text-decoration: none;
}

.bc-copy {
    margin-top: 20px;
    font-size: 14px;
    opacity: 0.8;
}

.bc-topbar {
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 10px 0; /* ↓ mais estreito */
}

.bc-logo {
    position: relative;
    top: 20px; /* desce a logo */
}

.bc-logo img {
    width: 180px;
    height: auto;
    transition: 0.3s ease;
    filter: drop-shadow(0 8px 18px rgba(0,0,0,0.35));
}

.bc-top-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.bc-slogan {
    font-size: 14px;
    color: #0d1b2a;
    text-align: center;
}

.bc-slogan strong {
    display: block;
    color: #1e3a8a;
}

/* ================= RESPONSIVIDADE ================= */

/* Tablet */
@media (max-width: 1024px) {

    .bc-hero {
        padding: 90px 0;
    }

    .bc-hero-left h1 {
        font-size: 42px;
    }

    .bc-hero-right {
        flex: 0 0 320px;
    }

}

/* Tablet pequeno */
@media (max-width: 900px) {

    .bc-hero .bc-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .bc-hero-right {
        flex: unset;
        width: 100%;
        margin-top: 30px;
    }

    .bc-hero-card {
        width: 100%;
    }

}

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

    /* Topo organizado */
    .bc-top-flex {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .bc-slogan {
        display: none;
    }

    /* Botão hambúrguer */
    .bc-toggle {
        display: block;
        font-size: 28px;
        cursor: pointer;
        color: #0d1b2a;
    }

    /* Menu mobile */
    .bc-menu {
        position: fixed; /* <-- mais estável */
        top: 80px;       /* altura real do header */
        right: 20px;
        background: white;
        width: 240px;
        display: none;
        flex-direction: column;
        padding: 20px;
        border-radius: 10px;
        box-shadow: 0 20px 50px rgba(0,0,0,0.2);
        z-index: 998;
    }

    .bc-menu a {
        margin: 12px 0;
        font-size: 15px;
    }

    .bc-menu.active {
        display: flex;
    }

    /* HERO */
    .bc-hero {
        padding: 70px 0;
    }

    .bc-hero-left h1 {
        font-size: 32px;
        line-height: 1.2;
    }

    .bc-hero-left p {
        font-size: 16px;
    }

    /* Busca */
    .bc-busca-form {
        flex-direction: column;
    }

    .bc-busca-form input,
    .bc-busca-form select,
    .bc-busca-form button {
        width: 100%;
    }
}

/* ================= MOBILE PEQUENO ================= */
@media (max-width: 480px) {

    .bc-hero-left h1 {
        font-size: 26px;
    }

    .bc-hero {
        padding: 60px 0;
    }
}

.ia-alerta {
    background: #fff3e0;
    color: #b45309;
    padding: 15px;
    border-radius: 12px;
    margin-bottom: 15px;
    font-size: 14px;
    border-left: 5px solid #f97316;
}

.btn-ia {
    background: #f97316;
    color: white;
    border: none;
    border-radius: 12px;
    padding: 14px;
    font-weight: 600;
    margin-bottom: 15px;
    cursor: pointer;
    transition: 0.2s;
}

.btn-ia:hover {
    opacity: 0.9;
}

.bc-sobre-portal {
    background: #f5f7fa;
    padding: 55px 0 35px;
}

.bc-sobre-box {
    max-width: 980px;
    margin: 0 auto;
    padding: 34px 42px;
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(15, 23, 42, 0.06);
    border-radius: 24px;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.07);
    text-align: center;
}

.bc-sobre-label {
    display: inline-flex;
    margin-bottom: 14px;
    padding: 6px 14px;
    border-radius: 999px;
    background: #eef2ff;
    color: #1d4ed8;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.bc-sobre-box h2 {
    max-width: 760px;
    margin: 0 auto 18px;
    font-size: 32px;
    line-height: 1.2;
    color: #0d1b2a;
}

.bc-sobre-box p {
    max-width: 850px;
    margin: 0 auto 12px;
    font-size: 17px;
    line-height: 1.7;
    color: #334155;
}

@media (max-width: 768px) {
    .bc-sobre-portal {
        padding: 40px 0 25px;
    }

    .bc-sobre-box {
        padding: 26px 22px;
        text-align: left;
    }

    .bc-sobre-box h2 {
        font-size: 26px;
    }

    .bc-sobre-box p {
        font-size: 16px;
    }
}

/* FAQ */
.bc-faq {
    background: linear-gradient(180deg, #f5f7fa 0%, #eef3f8 100%);
    padding: 75px 0;
}

.bc-faq-header {
    max-width: 850px;
    margin: 0 auto 38px;
    text-align: center;
}

.bc-faq-header h2 {
    margin: 0 0 16px;
    font-size: 34px;
    line-height: 1.2;
    color: #0d1b2a;
}

.bc-faq-header p {
    font-size: 17px;
    line-height: 1.7;
    color: #4b5563;
}

.bc-faq-lista {
    max-width: 980px;
    margin: 0 auto;
    display: grid;
    gap: 14px;
}

.bc-faq-item {
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(15, 23, 42, 0.06);
    border-radius: 18px;
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.06);
    overflow: hidden;
}

.bc-faq-item summary {
    position: relative;
    padding: 20px 56px 20px 24px;
    cursor: pointer;
    list-style: none;
    font-size: 18px;
    font-weight: 700;
    color: #0d1b2a;
}

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

.bc-faq-item summary::after {
    content: "+";
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #eef2ff;
    color: #1d4ed8;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 700;
    line-height: 1;
}

.bc-faq-item[open] summary::after {
    content: "−";
    background: #fff3e0;
    color: #f97316;
}

.bc-faq-item p {
    padding: 0 24px 22px;
    font-size: 16px;
    line-height: 1.75;
    color: #334155;
}

@media (max-width: 768px) {
    .bc-faq {
        padding: 55px 0;
    }

    .bc-faq-header {
        text-align: left;
        margin-bottom: 28px;
    }

    .bc-faq-header h2 {
        font-size: 28px;
    }

    .bc-faq-header p {
        font-size: 16px;
    }

    .bc-faq-item summary {
        padding: 18px 52px 18px 20px;
        font-size: 16.5px;
    }

    .bc-faq-item p {
        padding: 0 20px 20px;
        font-size: 15.5px;
    }
}

/* INTRO DOS DESTAQUES */
.bc-destaques-intro {
    max-width: 980px;
    margin: 0 auto 42px;
    text-align: center;
}

.bc-destaques-intro h2 {
    max-width: 820px;
    margin: 0 auto 18px;
    font-size: 34px;
    line-height: 1.2;
    color: #0d1b2a;
}

.bc-destaques-intro p {
    max-width: 900px;
    margin: 0 auto;
    font-size: 17px;
    line-height: 1.7;
    color: #334155;
}

.bc-destaques-titulo-lista {
    margin-bottom: 24px;
    font-size: 26px;
    line-height: 1.2;
    color: #0d1b2a;
}

@media (max-width: 768px) {
    .bc-destaques-intro {
        text-align: left;
        margin-bottom: 34px;
    }

    .bc-destaques-intro h2 {
        font-size: 28px;
    }

    .bc-destaques-intro p {
        font-size: 16px;
        line-height: 1.65;
    }

    .bc-destaques-titulo-lista {
        font-size: 24px;
    }
}

/* INTRO IMÓVEIS DISPONÍVEIS */
.bc-imoveis-random-intro {
    max-width: 920px;
    margin: 0 auto 38px;
    text-align: center;
}

.bc-imoveis-random-intro h2 {
    max-width: 760px;
    margin: 0 auto 16px;
    font-size: 34px;
    line-height: 1.2;
    color: #0d1b2a;
}

.bc-imoveis-random-intro p {
    max-width: 860px;
    margin: 0 auto;
    font-size: 17px;
    line-height: 1.7;
    color: #334155;
}

@media (max-width: 768px) {
    .bc-imoveis-random-intro {
        text-align: left;
        margin-bottom: 30px;
    }

    .bc-imoveis-random-intro h2 {
        font-size: 28px;
    }

    .bc-imoveis-random-intro p {
        font-size: 16px;
        line-height: 1.65;
    }
}

/* CAPTAÇÃO DE IMÓVEIS */
.bc-hero-captacao {
    background: url('/assets/img/hero.webp') center center/cover no-repeat;
}

.bc-form-captacao-card h2 {
    margin-bottom: 12px;
}

.bc-form-aviso {
    max-width: 850px;
    margin-bottom: 28px;
    font-size: 17px;
    color: #334155;
    line-height: 1.7;
}

.bc-form-captacao h3 {
    margin: 34px 0 18px;
    font-size: 22px;
    color: #0d1b2a;
}

.bc-form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.bc-form-campo {
    display: flex;
    flex-direction: column;
}

.bc-form-campo-full {
    grid-column: 1 / -1;
}

.bc-form-campo label {
    margin-bottom: 7px;
    font-weight: 700;
    color: #0d1b2a;
    font-size: 15px;
}

.bc-form-campo input,
.bc-form-campo select,
.bc-form-campo textarea {
    width: 100%;
    padding: 13px 14px;
    border: 1px solid rgba(15, 23, 42, 0.14);
    border-radius: 12px;
    font-size: 15px;
    font-family: inherit;
    background: #ffffff;
    color: #0d1b2a;
    outline: none;
}

.bc-form-campo input:focus,
.bc-form-campo select:focus,
.bc-form-campo textarea:focus {
    border-color: #f97316;
    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.12);
}

.bc-form-submit {
    margin-top: 34px;
    text-align: center;
}

.bc-alerta-sucesso {
    margin: 20px 0;
    padding: 16px 18px;
    border-radius: 14px;
    background: #dcfce7;
    color: #166534;
    font-weight: 700;
}

.bc-alerta-erro {
    margin: 20px 0;
    padding: 16px 18px;
    border-radius: 14px;
    background: #fee2e2;
    color: #991b1b;
    font-weight: 700;
}

.bc-texto-longo h2 {
    margin-top: 36px;
    margin-bottom: 16px;
    font-size: 30px;
    line-height: 1.25;
    color: #0d1b2a;
}

.bc-texto-longo h2:first-child {
    margin-top: 0;
}

.bc-texto-longo h3 {
    margin-top: 28px;
    margin-bottom: 10px;
    font-size: 22px;
    line-height: 1.3;
    color: #1e3a8a;
}

.bc-texto-longo p {
    margin-bottom: 16px;
    font-size: 17px;
    line-height: 1.8;
    color: #334155;
}

@media (max-width: 768px) {
    .bc-form-grid {
        grid-template-columns: 1fr;
    }

    .bc-form-captacao h3 {
        font-size: 20px;
    }

    .bc-texto-longo h2 {
        font-size: 25px;
    }

    .bc-texto-longo h3 {
        font-size: 20px;
    }

    .bc-texto-longo p {
        font-size: 16px;
        line-height: 1.7;
    }
}

/* DROPDOWN MENU — MERCADO IMOBILIÁRIO */
.bc-dropdown {
    position: relative;
}

.bc-dropdown-toggle {
    cursor: pointer;
}

.bc-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 320px;
    background: #fff;
    padding: 14px;
    border-radius: 16px;
    box-shadow: 0 22px 55px rgba(15, 23, 42, 0.18);
    border: 1px solid rgba(15, 23, 42, 0.08);
    display: none;
    z-index: 1000;
}

.bc-dropdown:hover .bc-dropdown-menu,
.bc-dropdown.active .bc-dropdown-menu {
    display: block;
}

.bc-dropdown-menu a {
    display: block;
    margin: 0;
    padding: 10px 12px;
    border-radius: 10px;
    font-size: 14px;
    line-height: 1.35;
    color: #0d1b2a;
    text-decoration: none;
}

.bc-dropdown-menu a:hover {
    background: #fff7ed;
    color: #f97316;
}

.bc-dropdown-title {
    display: block;
    margin: 10px 0 6px;
    padding: 8px 12px 4px;
    font-size: 12px;
    font-weight: 800;
    color: #1e3a8a;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    border-top: 1px solid #e5e7eb;
}

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

    .bc-dropdown {
        width: 100%;
    }

    .bc-dropdown-menu {
        position: static;
        width: 100%;
        box-shadow: none;
        border: none;
        padding: 8px 0 0;
        margin-top: 4px;
        border-radius: 10px;
        background: #f8fafc;
    }

    .bc-dropdown:hover .bc-dropdown-menu {
        display: none;
    }

    .bc-dropdown.active .bc-dropdown-menu {
        display: block;
    }

    .bc-dropdown-menu a {
        padding: 9px 10px;
        font-size: 14px;
    }

    .bc-dropdown-title {
        padding-left: 10px;
    }
}

.bc-footer {
    background: #0f2742;
    color: #ffffff;
    padding: 56px 0 26px;
    margin-top: 70px;
}

.bc-footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1.2fr 1.2fr 1.1fr 1.2fr;
    gap: 34px;
}

.bc-footer h3 {
    color: #ffffff;
    font-size: 18px;
    margin-bottom: 14px;
}

.bc-footer p {
    color: rgba(255, 255, 255, 0.78);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 12px;
}

.bc-footer a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
}

.bc-footer a:hover {
    color: #20c7e8;
    text-decoration: underline;
}

.bc-footer p {
    color: rgba(255, 255, 255, 0.88);
}

.bc-copy {
    margin-top: 20px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.88);
}

.bc-copy a {
    color: #67e8f9;
    font-weight: 800;
}

.bc-footer-seo {
    border-top: 1px solid rgba(255,255,255,0.12);
    margin-top: 36px;
    padding-top: 20px;
}

.bc-footer-seo p {
    max-width: 980px;
    margin: 0 auto;
    text-align: center;
    font-size: 13px;
    color: rgba(255,255,255,0.68);
}

.bc-copy {
    border-top: 1px solid rgba(255,255,255,0.12);
    margin-top: 22px;
    padding-top: 18px;
    text-align: center;
    font-size: 13px;
    color: rgba(255,255,255,0.7);
}

.bc-copy a {
    font-size: 13px;
    font-weight: 700;
    color: #20c7e8;
}

@media (max-width: 1100px) {
    .bc-footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 760px) {
    .bc-footer-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .bc-footer {
        padding: 42px 0 22px;
    }
}

.bc-footer-legal {
    border-top: 1px solid rgba(255,255,255,0.12);
    margin-top: 22px;
    padding-top: 18px;
    text-align: center;
    font-size: 14px;
    color: rgba(255,255,255,0.65);
}

.bc-footer-legal a {
    color: rgba(255,255,255,0.82);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    margin: 0 8px;
}

.bc-footer-legal a:hover {
    color: #20c7e8;
    text-decoration: underline;
}

.bc-footer-legal span {
    color: rgba(255,255,255,0.35);
}

@media (max-width: 600px) {
    .bc-footer-legal {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px;
        line-height: 1.8;
    }

    .bc-footer-legal a {
        margin: 0 4px;
    }
}

.bc-youtube {
    padding: 70px 0;
    background: #f6f9fc;
}

.bc-youtube h2 {
    text-align: center;
    color: #0f2742;
    font-size: clamp(30px, 4vw, 44px);
    margin-bottom: 34px;
}

.bc-grid-youtube {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.bc-video-card {
    background: #ffffff;
    border-radius: 26px;
    overflow: hidden;
    box-shadow: 0 18px 45px rgba(15, 39, 66, 0.10);
    display: flex;
    flex-direction: column;
}

.bc-video-frame {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    background: #0f2742;
}

.bc-video-frame iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.bc-video-content {
    padding: 28px;
}

.bc-video-content h3 {
    color: #0f2742;
    font-size: 24px;
    line-height: 1.25;
    margin: 0 0 14px;
}

.bc-video-content p {
    color: #34495e;
    font-size: 16px;
    line-height: 1.7;
    margin: 0 0 22px;
}

.bc-video-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #20c7e8, #18b77b);
    color: #ffffff;
    text-decoration: none;
    font-weight: 800;
    padding: 13px 20px;
    border-radius: 999px;
    transition: .2s ease;
}

.bc-video-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 26px rgba(32, 199, 232, 0.25);
}

.bc-video-btn-secondary {
    background: #0f2742;
}

.bc-video-placeholder {
    min-height: 260px;
    background:
        linear-gradient(135deg, rgba(15,39,66,0.94), rgba(24,90,141,0.90));
    color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.bc-video-placeholder span {
    font-size: 54px;
}

.bc-video-placeholder strong {
    font-size: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 850px) {
    .bc-grid-youtube {
        grid-template-columns: 1fr;
    }

    .bc-youtube {
        padding: 48px 0;
    }

    .bc-video-content {
        padding: 24px;
    }
}

.bc-video-lite {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #0f2742;
    cursor: pointer;
    overflow: hidden;
    border-radius: 0;
}

.bc-video-lite img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.bc-video-play {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 64px;
    color: #ffffff;
    background: rgba(15, 39, 66, 0.25);
    text-shadow: 0 8px 24px rgba(0,0,0,0.45);
}

