/**
 * Compatibilidade Landings Legadas → Sites2
 *
 * O style.bundle.css (Metronic + Bootstrap) já fornece todas as classes padrão.
 * Aqui ficam APENAS estilos custom que NÃO existem em nenhum CSS carregado.
 */

/* Backgrounds customizados (não existem no Metronic) */
.bg-ceu {
    background: linear-gradient(180deg, #e8f4fd 0%, #f5f8fa 100%);
}
.bg-exagonal {
    background: #f8f9fa url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='49' viewBox='0 0 28 49'%3E%3Cg fill-rule='evenodd'%3E%3Cg fill='%23e0e0e0' fill-opacity='0.15'%3E%3Cpath d='M13.99 9.25l13 7.5v15l-13 7.5L1 31.75v-15l12.99-7.5zM3 17.9v12.7l10.99 6.34 11-6.35V17.9l-11-6.34L3 17.9zM0 15l12.98-7.5V0h-2v6.35L0 12.69v2.3zm0 18.5L12.98 41v8h-2v-6.85L0 35.81v-2.3zM15 0v7.5L27.99 15H28v-2.31h-.01L17 6.35V0h-2zm0 49v-8l12.99-7.5H28v2.31h-.01L17 42.15V49h-2z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

/* Botão customizado (não existe no Metronic) */
.btn-wave-warning {
    background: linear-gradient(135deg, #FFC107, #FF9800);
    color: #fff;
    border: none;
    font-weight: 600;
    transition: all 0.3s;
}
.btn-wave-warning:hover {
    background: linear-gradient(135deg, #FFD54F, #FFB74D);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.4);
}

/* Fix: text-white não funciona quando base.css do sites2 sobrescreve --bs-body-color */
.text-white { color: #ffffff !important; }
.text-gray-100 { color: #F5F8FA !important; }
.nav-link.text-white { color: #ffffff !important; }

/* Parallax (sem background-attachment:fixed — quebra em mobile) */
.parallax {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

/* Table card (grid de imóveis da landing) */
.table-card {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    width: 100%;
}
