/* ================================================= */
/* VARIÁVEIS GLOBAIS DO MINI SITE (fallback)         */
/* ================================================= */
:root {
    --ms-cor-primaria: #4b0082;
    --ms-cor-secundaria: #1f00ff;
    --ms-cor-texto: #222222;
}

/* ===================== */
/* HEADER / TOPO         */
/* ===================== */

.ms-header-bar {
    background-color: var(--ms-cor-primaria);
}

.ms-logo-text {
    color: var(--ms-cor-texto);
    font-weight: 600;
}

.ms-nav a {
    color: var(--ms-cor-texto);
    font-weight: 500;
    text-decoration: none;
}

.ms-nav a:hover {
    opacity: 0.85;
    text-decoration: underline;
}

/* ===================== */
/* HERO (BANNER)         */
/* ===================== */

/* HERO otimizado — super leve */
.ms-hero {
    position: relative;
    height: 360px;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    background-color: var(--ms-cor-secundaria);
}

/* fundo estático */
.ms-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    will-change: opacity;
}

/* overlay sólido (zero peso) */
.ms-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.25); /* leve e elegante */
}

/* conteúdo */
.ms-hero-content {
    position: relative;
    color: #ffffff;
    padding-left: 20px;
    animation: msFadeIn 0.4s ease-out;
}

.ms-hero-label {
    background: rgba(0,0,0,0.35);
    padding: 6px 12px;
    border-radius: 20px;
    display: inline-block;
    font-size: 13px;
    margin-bottom: 10px;
}

.ms-hero h1 {
    color: #ffffff;
}

.ms-hero-sub {
    color: #f0f0f0;
}

/* animação */
@keyframes msFadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* ===================== */
/* PÁGINA DO IMÓVEL      */
/* ===================== */

.ms-imovel-header {
    text-align: center;
    margin-bottom: 40px;
}

.ms-imovel-titulo {
    font-size: 32px;
    margin-bottom: 5px;
    color: var(--ms-cor-texto);
}

.ms-imovel-preco {
    font-size: 22px;
    color: var(--ms-cor-primaria);
    font-weight: bold;
}

/* ===================== */
/* GALERIA               */
/* ===================== */

.ms-galeria {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(240px,1fr));
    gap: 20px;
}

.ms-galeria img {
    width: 100%;
    border-radius: 10px;
}

/* ===================== */
/* MAPA DO MINI SITE     */
/* ===================== */

.ms-map-wrapper {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto 60px auto;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

#ms-map {
    width: 100%;
    height: 480px;
    border-radius: 12px;
    overflow: hidden;
}
