/* ================= RESET ================= */
* {
    box-sizing: border-box;
}

/* 🔥 ÚNICA CORREÇÃO */


/* ================= HEADER ================= */
.header {
    position: relative;
    overflow: hidden;
    min-height: 260px;
    background:
        linear-gradient(
            120deg,
            #000000 0%,
            #1f1607 12%,
            #5f4513 28%,
            #d4af37 50%,
            #8f6a1d 68%,
            #2c1f08 84%,
            #000000 100%
        );
    background-size: 300% 300%;
    animation: premiumBgFlow 16s ease infinite;
}

/* CAMADA EXTRA DE BRILHO */
.header::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255,215,0,0.08),
            rgba(255,255,255,0.04),
            rgba(255,215,0,0.08),
            transparent
        );
    animation: bgShine 12s linear infinite;
    z-index: 1;
}


/* ================= NAVBAR ================= */
.navbar {
    display: flex;
    justify-content: center;
    gap: 40px;
    padding: 18px 0;
    width: 100%;
    position: relative;

    background: linear-gradient(180deg, rgba(0,0,0,0.95), rgba(0,0,0,0.85));
    backdrop-filter: blur(6px);

    box-shadow: 
        0 10px 30px rgba(0,0,0,0.6),
        inset 0 1px 0 rgba(255,255,255,0.05);
}

.navbar::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 1px;
    background: linear-gradient(to right, transparent, #c59d5f, transparent);
}

.navbar a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 1px;
    transition: 0.3s;
}

.navbar a:hover {
    color: #c59d5f;
}

/* ================= GRID ================= */
.grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 30px;
    max-width: 1100px;
    margin: 20px auto 0;
}

@media (max-width: 900px) {
    .grid { grid-template-columns: repeat(2, 1fr); }
}

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

/* ================= CARDS ================= */
.card {
    background: #0d0d0d;
    border-radius: 14px;
    overflow: hidden;
    cursor: pointer;
    transition: 0.3s;
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.6);
}

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

/* ================= CONTEÚDO ================= */
.conteudo {
    padding: 14px;
}

.conteudo h3 {
    margin: 0;
    font-size: 16px;
}

.preco {
    color: #c59d5f;
    font-weight: bold;
    font-size: 15px;
    margin-top: 5px;
}

/* ================= ÍCONES ================= */
.infos {
    display: flex;
    justify-content: space-between;
    margin-top: 12px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
}

.info-item img {
    width: 16px;
    height: 16px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

/* ================= DESTAQUE ================= */
.destaque {
    padding: 40px 30px;
}

.destaque-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 20px;
}

.destaque-principal,
.mini-card {
    position: relative;
    cursor: pointer;
}

.destaque-principal img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 15px;
}

.mini-card img {
    width: 100%;
    height: 165px;
    object-fit: cover;
    border-radius: 15px;
}

/* OVERLAY */
.overlay {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 15px;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
}

/* ================= MAPA ================= */
.mapa {
    max-width: 900px;
    margin: 40px auto;
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(197,157,95,0.4);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.mapa iframe {
    width: 100%;
    height: 250px;
    border: none;
}

/* ================= FOOTER ================= */
.footer {
    background: #000;
    padding: 40px 20px;
}

.footer-container {
    max-width: 1000px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-info {
    color: #ccc;
    font-size: 14px;
}

/* BOTÕES */
.btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 18px;
    border-radius: 8px;
    text-decoration: none;
    color: #fff;
    transition: 0.3s;
}

.btn img {
    width: 18px;
}

/* WHATSAPP */
.whatsapp {
    background: #25D366;
}

.whatsapp:hover {
    background: #1ebe5d;
    transform: translateY(-2px);
}

/* INSTAGRAM */
.instagram {
    background: linear-gradient(45deg, #833ab4, #fd1d1d, #fcb045);
}

.instagram:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

/* ================= BOTÕES FLUTUANTES ================= */
.float-buttons {
    position: fixed;
    right: 20px;
    bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 999;
}

.float-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.float-btn img {
    width: 26px;
}

.float-btn.whatsapp {
    background: #25D366;
}

.float-btn.instagram {
    background: linear-gradient(45deg, #833ab4, #fd1d1d, #fcb045);
}

/* ================= AJUSTES ================= */
.contato {
    display: none;
}

/* SOCIAL HEADER */
.social-header {
    display: flex;
    gap: 15px;
}

.social-header img {
    width: 24px;
    height: 24px;
    object-fit: contain;
    opacity: 0.8;
    transition: 0.3s;
    cursor: pointer;
}

.social-header img:hover {
    opacity: 1;
    transform: scale(1.1);
}
/* CENTRALIZA E LIMITA O DESTAQUE */
.destaque {
    padding: 40px 30px;
    max-width: 1100px;
    margin: auto;
}

/* PRINCIPAL */
.principal img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
}

/* MINI */
.mini img {
    width: 100%;
    height: 190px;
    object-fit: cover;
    border-radius: 15px;
}
/* ================= DESTAQUE INTELIGENTE ================= */

/* GRID PADRÃO (quando tem vários) */
.grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 20px;
    padding: 30px;
    max-width: 1100px;
    margin: 20px auto 0;
}

/* QUANDO TEM POUCOS ITENS (fica centralizado bonito) */
.grid:has(.principal:only-child),
.grid:has(.principal:only-child + .lateral:empty) {
    display: flex;
    justify-content: center;
}

/* CARD PRINCIPAL */
.principal {
    position: relative;
    width: 100%;
    max-width: 600px;
}

.principal img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
}

/* LATERAL */
.lateral {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* MINI */
.mini {
    position: relative;
}

.mini img {
    width: 100%;
    height: 190px;
    object-fit: cover;
    border-radius: 15px;
}
.titulo {
    font-size: 28px;
    margin-bottom: 25px;
    color: #fff;
    border-left: 4px solid #c59d5f;
    padding-left: 12px;
    font-weight: 600;
}
.overlay h3 {
    font-size: 18px;
    margin-bottom: 5px;
    font-weight: 500;
}

.overlay p {
    font-size: 14px;
    color: #c59d5f;
    font-weight: bold;
}
.btn {
    display: inline-block;
    padding: 14px 30px;
    background: linear-gradient(135deg, #c59d5f, #d4af37);
    color: #000;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    letter-spacing: 1px;
    transition: 0.3s;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(197,157,95,0.4);
}
.btn-area {
    text-align: center;
    margin-top: 40px;
}
/* ================= DETALHE DO IMÓVEL ================= */

.detalhe-container {
    display: flex;
    gap: 40px;
    padding: 40px;
    max-width: 1100px;
    margin: auto;
    align-items: flex-start;
}

/* GALERIA */
.galeria {
    position: relative;
    width: 60%;
}

.galeria img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
}

/* BOTÕES */
.galeria button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.6);
    color: #fff;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    border-radius: 6px;
}

.galeria button:first-of-type {
    left: 10px;
}

.galeria button:last-of-type {
    right: 10px;
}

/* INFO */
.info {
    width: 40%;
}

.info h1 {
    font-size: 26px;
    margin-bottom: 10px;
}

.info h2 {
    color: #c59d5f;
    margin-bottom: 15px;
}

.info p {
    color: #ccc;
    margin-bottom: 20px;
}

/* DETALHES */
.detalhes {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.item img {
    width: 20px;
    filter: brightness(0) invert(1);
}

/* MAPA */
.titulo-mapa {
    text-align: center;
    margin-top: 40px;
}

.mapa {
    max-width: 1000px;
    margin: 20px auto;
    border-radius: 15px;
    overflow: hidden;
}

/* RESPONSIVO */
@media (max-width: 900px) {
    .detalhe-container {
        flex-direction: column;
    }

    .galeria,
    .info {
        width: 100%;
    }
}
/* ICONES NO DESTAQUE */
.info-icons {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.info-icons div {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 13px;
    color: #ddd;
}

.info-icons img {
    width: 16px;
    filter: brightness(0) invert(1);
}
/* REMOVE BUG DOS QUADRADOS */
.overlay::before,
.overlay::after,
.principal::before,
.principal::after {
    display: none !important;
    content: none !important;
}

/* GARANTE LIMPEZA */
.overlay {
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    padding: 20px;
    position: absolute;
    bottom: 0;
    width: 100%;
}

/* ICONES CORRETOS */
.info-icons {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.info-icons div {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 13px;
    color: #fff;
}

.info-icons img {
    width: 16px;
    filter: brightness(0) invert(1);
}
/* ===== RESET FORÇADO DO DESTAQUE ===== */

.principal,
.principal * {
    all: unset;
    all: revert;
}

/* recria estrutura limpa */
.principal {
    position: relative;
    display: block;
    max-width: 600px;
    width: 100%;
}

.principal img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    display: block;
}

/* overlay limpo */
.principal .overlay {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0,0,0,0.85));
}

/* texto */
.principal h3 {
    font-size: 18px;
    margin-bottom: 5px;
}

.principal p {
    color: #c59d5f;
    font-weight: bold;
}

/* icones */
.info-icons {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.info-icons div {
    display: flex;
    align-items: center;
    gap: 6px;
}

.info-icons img {
    width: 16px;
}
/* ===== CORREÇÃO DOS ÍCONES ===== */

.info-icons img {
    width: 16px;
    height: 16px;
    object-fit: contain;

    position: static !important;  /* remove bug */
    display: inline-block !important;

    background: none !important;
    border: none !important;
    box-shadow: none !important;
}

/* garante alinhamento */
.info-icons {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.info-icons div {
    display: flex;
    align-items: center;
    gap: 6px;
}
.info-icons span {
    font-size: 13px;
    color: #ddd;
}
/* ===== DETALHES DO IMÓVEL ===== */

.detalhes {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.detalhes .item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.detalhes img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.detalhes strong {
    color: #fff;
    font-size: 14px;
}
.detalhes {
    display: flex;
    gap: 20px;
    margin-top: 15px;
    flex-wrap: wrap;
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #000;
    color: white;
}

/* HEADER */
.header {
    position: relative;
    overflow: hidden;
    background: linear-gradient(to bottom, #000000, #1a1205);
}

/* TOPO */
.header-top {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px 80px;
    height: 180px;
}

/* LOGO */
/* ================= LOGO MAIOR ================= */

/* ================= POSIÇÃO PREMIUM FINAL LOGO ================= */

.logo {
    width: 280px;
    height: auto;
    position: relative;
    z-index: 20;

    transform: translateY(-22px); /* ajuste superior refinado */

    filter:
        brightness(1.35)
        contrast(1.18)
        drop-shadow(0 0 12px rgba(255,215,0,0.25));

    transition: transform 0.3s ease;
}

.logo:hover {
    transform: translateY(-22px) scale(1.03);
}

/* RESPONSIVO */
@media (max-width: 900px) {
    .logo {
        width: 220px;
        transform: translateY(-12px);
    }

    .logo:hover {
        transform: translateY(-12px) scale(1.03);
    }
}

/* RESPONSIVO */
@media (max-width: 900px) {
    .logo {
        width: 220px;
        transform: translateY(-4px);
    }

    .logo:hover {
        transform: translateY(-4px) scale(1.03);
    }
}
/* RESPONSIVO */
@media (max-width: 900px) {
    .logo {
        width: 220px;
    }
}

/* REDES */
.social-header {
    display: flex;
    gap: 20px;
}

.social-header img {
    width: 36px;
    height: 36px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.social-header img:hover {
    transform: scale(1.15);
}

/* MENU */
.navbar {
    position: relative;
    z-index: 3;
    display: flex;
    justify-content: center;
    gap: 70px;
    padding: 22px;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(4px);
}

.navbar a {
    color: white;
    text-decoration: none;
    font-size: 20px;
    letter-spacing: 2px;
    transition: color 0.3s ease;
}

.navbar a:hover,
.navbar .ativo {
    color: #d4af37;
}
/* ÁREA DAS ONDAS */
.animated-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 190px;
    overflow: hidden;
    z-index: 2;
    pointer-events: none;
}

/* GLOW CENTRAL */
.glow {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at center,
            rgba(255,215,0,0.22),
            rgba(255,255,255,0.05),
            transparent 72%);
    animation:
        glowPulse 6s ease-in-out infinite,
        glowMove 18s linear infinite;
}


/* LOGO */
.logo {
    position: relative;
    z-index: 20;
    filter:
        brightness(1.35)
        contrast(1.18)
        drop-shadow(0 0 12px rgba(255,215,0,0.25));
}

/* REDES */
.social-header img {
    position: relative;
    z-index: 20;
    filter:
        brightness(1.4)
        contrast(1.15)
        drop-shadow(0 0 8px rgba(255,215,0,0.18));
}

/* TOPO */
.header-top {
    position: relative;
    z-index: 20;
}

/* NAVBAR */
.navbar {
    position: relative;
    z-index: 20;
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(6px);
}

/* CONTEÚDO */
.destaque,
.grid,
.principal,
.lateral,
section,
footer {
    position: relative;
    z-index: 30;
}

/* BODY */
body {
    overflow-x: hidden;
}

/* ================= ANIMAÇÕES ================= */

@keyframes premiumBgFlow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes bgShine {
    from { transform: translateX(-50%); }
    to { transform: translateX(50%); }
}

@keyframes ultraWave {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

@keyframes ultraWaveReverse {
    from { transform: translateX(-25%); }
    to { transform: translateX(-75%); }
}

@keyframes glowPulse {
    0%,100% { opacity: 0.5; }
    50% { opacity: 1; }
}

@keyframes glowMove {
    from { transform: translateX(-8%); }
    to { transform: translateX(8%); }
}

@keyframes waveGlow {
    0%,100% {
        filter: blur(12px) brightness(1);
    }
    50% {
        filter: blur(18px) brightness(1.25);
    }
}
/* ===== FUNDO GLOBAL REAL ===== */
html {
    background: #050505 
}

body {
    background: transparent !important;
}

/* ===== FUNDO MESH PREMIUM ===== */
body {
    background: #050505;
    overflow-x: hidden;
}

/* camada animada */
body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;

    background:
        radial-gradient(at 20% 30%, rgba(212,175,55,0.15) 0%, transparent 50%),
        radial-gradient(at 80% 20%, rgba(255,255,255,0.05) 0%, transparent 50%),
        radial-gradient(at 70% 80%, rgba(212,175,55,0.12) 0%, transparent 50%),
        radial-gradient(at 30% 70%, rgba(255,255,255,0.04) 0%, transparent 50%);

    filter: blur(60px);

    animation: meshMove 20s ease-in-out infinite alternate;
}

/* animação fluida */
@keyframes meshMove {
    0% {
        transform: translate(0,0) scale(1);
    }
    50% {
        transform: translate(-3%, 3%) scale(1.05);
    }
    100% {
        transform: translate(3%, -3%) scale(1.08);
    }
}
.header,
.navbar,
.destaque {
    background: transparent !important;
}
.logo {
    position: relative;
    z-index: 10;

    filter:
        brightness(1.6)
        contrast(1.2)
        drop-shadow(0 0 10px rgba(255,255,255,0.15))
        drop-shadow(0 0 25px rgba(212,175,55,0.25));

    transition: 0.4s ease;
}
.logo::before {
    content: "";
    position: absolute;
    inset: -30px;
    z-index: -1;

    background: radial-gradient(
        circle,
        rgba(212,175,55,0.35),
        rgba(255,255,255,0.1),
        transparent 70%
    );

    filter: blur(30px);
    opacity: 0.8;
}
.logo::after {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 60%;
    height: 100%;
    z-index: 2;

    background: linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,0.6),
        transparent
    );

    transform: skewX(-20deg);

    animation: shinePass 4s ease-in-out infinite;
}
@keyframes shinePass {
    0% {
        left: -120%;
        opacity: 0;
    }
    30% {
        opacity: 0.6;
    }
    50% {
        left: 120%;
        opacity: 0.8;
    }
    100% {
        left: 120%;
        opacity: 0;
    }
}
.logo:hover {
    transform: scale(1.05);

    filter:
        brightness(1.8)
        contrast(1.3)
        drop-shadow(0 0 15px rgba(255,255,255,0.25))
        drop-shadow(0 0 35px rgba(212,175,55,0.4));
}
.header {
    background: linear-gradient(
        180deg,
        #1a1a1a,
        #0a0a0a
    ) !important;
}
/* HERO COM VIDA */
.hero {
    position: relative;
    background: #050505;
    overflow: hidden;
}

/* luz suave atrás do texto */
.hero::before {
    content: "";
    position: absolute;
    inset: -20%;

    background:
        radial-gradient(circle at 30% 40%, rgba(212,175,55,0.25), transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(255,255,255,0.05), transparent 50%);

    filter: blur(80px);
    opacity: 0.9;

    z-index: 0;
}

/* conteúdo acima */
.hero-content {
    position: relative;
    z-index: 2;
}
.hero h1 {
    color: #e6c36a;
    text-shadow: 0 0 20px rgba(212,175,55,0.25);
}

.hero p {
    color: #ccc;
    opacity: 0.9;
}
.hero h1::after {
    content: "";
    display: block;
    width: 80px;
    height: 2px;
    margin-top: 15px;

    background: linear-gradient(to right, #d4af37, transparent);
}
.hero {
    padding: 120px 10%;
}
/* BADGE */
.badge {
    position: absolute;
    top: 15px;
    left: 15px;

    padding: 6px 14px;
    border-radius: 20px;

    font-size: 11px;
    letter-spacing: 1px;
    font-weight: 500;

    backdrop-filter: blur(6px);
    border: 1px solid rgba(255,255,255,0.2);
    text-transform: uppercase;
}

.badge.aluguel {
    background: rgba(0,0,0,0.6);
    color: #d4af37;
}

.badge.venda {
    background: rgba(212,175,55,0.2);
    color: #fff;
}

/* INFO */
.infos {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
}

.infos {
    display: flex;
    align-items: center;
    gap: 18px; /* controla espaçamento */
    margin-top: 10px;
    flex-wrap: wrap; /* evita quebra feia */
}

.info-item img {
    width: 16px;
    height: 16px;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}
/* BOTÃO PRINCIPAL */
.btn-visita {
    display: inline-block;
    margin-top: 25px;

    padding: 16px 38px;
    border-radius: 40px;

    background: linear-gradient(135deg, #d4af37, #c59d5f);
    color: #000;

    font-weight: 600;
    letter-spacing: 1px;
    text-decoration: none;

    box-shadow: 
        0 10px 30px rgba(212,175,55,0.2),
        inset 0 0 10px rgba(255,255,255,0.2);

    transition: all 0.3s ease;
}

/* HOVER */
.btn-visita:hover {
    transform: translateY(-3px) scale(1.03);

    box-shadow: 
        0 15px 40px rgba(212,175,55,0.4),
        inset 0 0 15px rgba(255,255,255,0.3);
}

/* CLIQUE */
.btn-visita:active {
    transform: scale(0.98);
}
.contato-page {
    max-width: 800px;
    margin: 80px auto;
    padding: 20px;
}

/* CONTATO */
.contato-info {
    margin-bottom: 40px;
}

.contato-info h1 {
    margin-bottom: 10px;
}

/* DIVISOR */
.divider {
    border: none;
    height: 1px;
    background: #333;
    margin: 40px 0;
}

/* FORM */
.form-agenda {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-agenda input {
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #333;
    background: #111;
    color: #fff;
}

/* HORÁRIOS */
.horarios {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}

.horarios button {
    padding: 10px 18px;
    border-radius: 20px;
    border: 1px solid #333;
    background: #111;
    color: #fff;
    cursor: pointer;
    transition: 0.3s;
}

.horarios button:hover {
    border-color: #d4af37;
}

.horarios button.ativo {
    background: #d4af37;
    color: #000;
}
.contato-info p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: #ccc;
}

.contato-info i {
    color: #d4af37;
    font-size: 18px;
}
/* FOOTER PREMIUM */
.footer {
    background: linear-gradient(180deg, #0a0a0a, #050505);
    padding: 70px 20px 40px;
    color: #ccc;
    margin-top: 100px;
    position: relative;
}

/* LINHA DOURADA TOP */
.footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #d4af37, transparent);
}

/* CONTAINER */
.footer-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 50px;
}

/* COLUNAS */
.footer-col {
    min-width: 200px;
}

/* TÍTULO */
.footer-col h3 {
    color: #d4af37;
    margin-bottom: 15px;
    font-size: 18px;
    letter-spacing: 1px;
}

/* TEXTO */
.footer-col p {
    font-size: 14px;
    margin-bottom: 8px;
    color: #aaa;
}

/* LINKS */
.footer-col a {
    display: block;
    text-decoration: none;
    color: #ccc;
    font-size: 14px;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

/* HOVER DE LUXO */
.footer-col a:hover {
    color: #d4af37;
    transform: translateX(6px);
}

/* EFEITO ESPECIAL NAS REDES */
.footer-col.social a {
    position: relative;
    padding-left: 0;
}

/* RESPONSIVO */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        gap: 30px;
    }
}
/* ================= CARD ================= */

.card {
    position: relative;
    cursor: pointer;
}

/* ================= IMAGEM ================= */

.img-box {
    position: relative; /* 🔥 ESSENCIAL (corrige o bug) */
}

.img-box img {
    width: 100%;
    border-radius: 12px;
}

/* ================= BADGE ================= */

.badge {
    position: absolute;
    top: 10px;
    left: 10px;

    padding: 6px 14px;
    border-radius: 20px;

    font-size: 12px;
    font-weight: bold;

    z-index: 10;

    box-shadow: 0 4px 12px rgba(0,0,0,0.4);
}

/* ALUGUEL */
.badge.aluguel {
    background: rgba(0,0,0,0.8);
    color: #d4af37;
}

/* VENDA */
.badge.venda {
    background: linear-gradient(135deg, #d4af37, #b8962e);
    color: #000;
}
/* ================= LOGO FORÇA BRUTA ================= */

.logo {
    height: 390px !important;   /* 🔥 AUMENTA AQUI SE QUISER MAIS */
    width: auto !important;

    max-height: none !important;
    min-height: auto !important;

    object-fit: contain !important;

    position: relative !important;
    z-index: 999 !important;

    filter:
        brightness(2.2)
        contrast(1.3)
        saturate(1.3)
        drop-shadow(0 0 20px rgba(212,175,55,0.7)) !important;

    transition: 0.3s ease !important;
}
.overlay {
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
}
@media (max-width: 768px) {

    .grid {
        display: block;
        padding: 10px;
    }

    .principal {
        height: 200px;
        margin-bottom: 15px;
    }

    .mini {
        height: 120px;
        margin-bottom: 10px;
    }

    .navbar {
        font-size: 14px;
        text-align: center;
    }

    .logo {
        width: 130px;
    }

    .overlay h3 {
        font-size: 14px;
    }

    .overlay p {
        font-size: 13px;
    }

    .info-icons {
        font-size: 12px;
    }
}
.overlay {
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
}

@media (max-width: 768px) {

    .grid {
        display: block;
        padding: 10px;
    }

    .principal {
        height: 200px;
        margin-bottom: 15px;
    }

    .mini {
        height: 120px;
        margin-bottom: 10px;
    }

    .navbar {
        font-size: 14px;
        text-align: center;
    }

    .logo {
        width: 130px;
    }

    .overlay h3 {
        font-size: 14px;
    }

    .overlay p {
        font-size: 13px;
    }

    .info-icons {
        font-size: 12px;
    }
}