/* 
   NUM INMOBILIARIA - THE VOID 2.0 (DESTRUCTIVE MODE)
   THE ARCHITECTURE OF SILENCE.
*/

:root {
    --deep-void: #000;
    --gold-glow: #7a5f33;
    --accent-gold: #c5a059;
    --text-dim: rgba(255, 255, 255, 0.1);
    --border-glass: rgba(255, 255, 255, 0.02);
    --font-serif: 'Playfair Display', serif;
}

body {
    background-color: var(--deep-void) !important;
    color: #fff !important;
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
    cursor: crosshair;
}

/* Background Large Text */
body::before {
    content: "LUJO LUJO LUJO";
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-15deg);
    font-size: 30vw;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.02);
    white-space: nowrap;
    z-index: -1;
    pointer-events: none;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.05);
}

/* Radical Header - Floating & Minimal */
header {
    background: transparent !important;
    border: none !important;
    padding: 40px !important;
    mix-blend-mode: difference;
    z-index: 10000;
}

.header-container {
    max-width: 100% !important;
}

nav ul {
    justify-content: flex-end !important;
    gap: 40px;
}

nav ul li a {
    font-size: 0.6rem !important;
    letter-spacing: 5px !important;
    font-weight: 200 !important;
}

/* Hero Section: The Monumental Void */
.hero {
    height: 100vh !important;
    padding: 0 5vw !important;
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    align-items: center !important;
    justify-content: center !important;
}

.hero-slides {
    filter: grayscale(1) contrast(2) brightness(0.2) !important;
    clip-path: polygon(0 0, 80% 0, 100% 100%, 0% 100%);
}

.hero-title-text {
    font-size: clamp(5rem, 18vw, 15rem) !important;
    line-height: 0.75 !important;
    -webkit-text-stroke: 1px #fff;
    color: transparent !important;
    transition: all 0.8s ease;
}

.hero:hover .hero-title-text {
    color: #fff !important;
    -webkit-text-stroke: 0px transparent;
}

.hero p {
    grid-column: 1 / 2;
    font-size: 0.8rem !important;
    max-width: 300px;
    letter-spacing: 0.4em !important;
    text-transform: uppercase;
    opacity: 0.4;
    margin: 50px 0 0 !important;
}

/* Radical Search Bar - Floating Box */
.search-bar {
    position: fixed !important;
    right: 5vw !important;
    bottom: 5vw !important;
    background: rgba(10, 10, 10, 0.95) !important;
    border: 1px solid var(--accent-gold) !important;
    width: 350px !important;
    padding: 40px !important;
    z-index: 5000;
    backdrop-filter: blur(20px);
}

.search-section button {
    background: var(--accent-gold) !important;
    color: #000 !important;
    font-weight: 900 !important;
    width: 100% !important;
    padding: 15px !important;
    margin-top: 20px;
    letter-spacing: 2px;
}

/* Sections: Asymmetrical Grids */
.zonas-destacadas,
.destacados-section {
    padding: 200px 5vw !important;
    overflow: visible !important;
}

.section-title-premium {
    font-size: 15vw !important;
    line-height: 1;
    -webkit-text-stroke: 2px rgba(255, 255, 255, 0.05);
    color: transparent !important;
    margin-bottom: 200px !important;
}

.cards-inmuebles-container {
    display: flex !important;
    flex-wrap: wrap;
    gap: 100px;
}

.card-inmueble {
    width: 45% !important;
    filter: grayscale(1);
    transform: skewY(5deg);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.card-inmueble:nth-child(even) {
    transform: skewY(-5deg) translateY(100px);
}

.card-inmueble:hover {
    filter: grayscale(0);
    transform: skewY(0) scale(1.05) !important;
    z-index: 100;
}

/* Hide navigation buttons on cards for extreme minimalism */
.card-nav-prev,
.card-nav-next,
.card-badge-count {
    display: none !important;
}

/* Scroll Indicator - Brutalist */
.scroll-indicator {
    position: fixed !important;
    left: 20px !important;
    bottom: 20px !important;
    transform: none !important;
}

.scroll-text {
    font-size: 0.5rem !important;
}

.scroll-line {
    height: 150px !important;
    width: 1px !important;
    background: rgba(255, 255, 255, 0.1) !important;
}

/* Footer: Total Blackout */
footer {
    background: #000 !important;
    padding: 100px 5vw !important;
}

footer h4 {
    font-size: 0.7rem !important;
    letter-spacing: 5px;
    opacity: 0.5;
}

footer li a {
    font-size: 0.6rem !important;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 2px;
}

::-webkit-scrollbar-track {
    background: #000;
}

::-webkit-scrollbar-thumb {
    background: #333;
}