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

        html {
            scroll-behavior: smooth;
        }

        html, body {
            margin: 0;
            padding: 0;
            width: 100%;
            overflow-x: hidden;
        }

        /* Scroll offset para secciones cuando se hace scroll a ellas */
        section[id],
        #inicio,
        #properties,
        #process,
        #honorarios,
        #contact {
            scroll-margin-top: 120px; /* Altura navbar + margen extra */
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
            background-attachment: fixed;
            min-height: 100vh;
            color: white;
            transition: all 0.3s ease;
        }

        :root {
            --glass-light: rgba(255, 255, 255, 0.08);
            --glass-medium: rgba(255, 255, 255, 0.12);
            --glass-strong: rgba(255, 255, 255, 0.18);
            --border-light: rgba(255, 255, 255, 0.15);
            --border-medium: rgba(255, 255, 255, 0.25);
            --text-primary: #ffffff;
            --text-secondary: rgba(255, 255, 255, 0.8);
            --text-muted: rgba(255, 255, 255, 0.6);
            --accent-blue: #4c9aff;
            --accent-purple: #8b5cf6;
        }

        body.light-theme {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            --glass-light: rgba(255, 255, 255, 0.1);
            --glass-medium: rgba(255, 255, 255, 0.15);
            --glass-strong: rgba(255, 255, 255, 0.2);
            --border-light: rgba(255, 255, 255, 0.2);
            --border-medium: rgba(255, 255, 255, 0.3);
            --accent-blue: #667eea;
            --accent-purple: #764ba2;
        }

        .glass {
            background: var(--glass-light);
            backdrop-filter: blur(20px);
            border: 1px solid var(--border-light);
            border-radius: 20px;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
            transition: all 0.3s ease;
        }

        .glass:hover {
            background: var(--glass-medium);
            border: 1px solid var(--border-medium);
        }

        /* Header */
        header {
            padding: 20px 100px;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 12px 24px;
            border-radius: 50px;
            min-height: 60px;
        }

        /* Mayor contraste del vidrio en la navbar para leerse bien sobre fondos claros */
        header nav.glass {
            background: linear-gradient(180deg, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0.08) 100%), rgba(17, 24, 39, 0.58);
            border: 1px solid rgba(255, 255, 255, 0.24);
            backdrop-filter: blur(26px) saturate(160%);
            -webkit-backdrop-filter: blur(26px) saturate(160%);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.12);
        }

        header nav.glass:hover {
            background: linear-gradient(180deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.1) 100%), rgba(17, 24, 39, 0.66);
            border: 1px solid rgba(255, 255, 255, 0.28);
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 20px;
            font-weight: 700;
            color: var(--text-primary);
            padding: 6px 12px;
            border-radius: 12px;
            transition: all 0.3s ease;
            text-decoration: none;
        }

        .logo img {
            height: 35px;
            width: auto;
            object-fit: contain;
        }

        .logo-text {
            font-size: 20px;
            font-weight: 700;
        }

        .logo:hover {
            background: var(--glass-light);
        }

        .nav-center {
            display: flex;
            gap: 8px;
            list-style: none;
            background: rgba(255, 255, 255, 0.12);
            border-radius: 30px;
            padding: 6px 8px;
            border: 1px solid rgba(255, 255, 255, 0.22);
        }

        .nav-center a {
            color: rgba(255, 255, 255, 0.95);
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 14px;
            white-space: nowrap;
            text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
        }

        .nav-center a:hover, .nav-center a.active {
            background: rgba(255, 255, 255, 0.22);
            color: var(--text-primary);
            transform: translateY(-1px);
        }

        .theme-toggle {
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.22);
            border-radius: 30px;
            padding: 10px 16px;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 8px;
            color: rgba(255, 255, 255, 0.95);
            font-size: 13px;
            min-width: 90px;
            justify-content: center;
            text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
        }

        .theme-toggle:hover {
            background: rgba(255, 255, 255, 0.18);
            color: var(--text-primary);
            transform: translateY(-1px);
        }

        .theme-icon {
            font-size: 14px;
            transition: all 0.3s ease;
        }

        .mobile-menu-toggle {
            display: none;
            background: var(--glass-light);
            border: 1px solid var(--border-light);
            border-radius: 8px;
            padding: 10px;
            cursor: pointer;
            transition: all 0.3s ease;
            color: var(--text-primary);
            font-size: 16px;
            min-width: 40px;
            height: 40px;
            align-items: center;
            justify-content: center;
        }

        .mobile-menu {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background: linear-gradient(180deg, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0.08) 100%), rgba(17, 24, 39, 0.58);
            backdrop-filter: blur(28px) saturate(165%);
            -webkit-backdrop-filter: blur(28px) saturate(165%);
            border: 1px solid rgba(255, 255, 255, 0.24);
            border-radius: 28px;
            margin: 0;
            padding: 28px 22px 32px;
            box-shadow: 0 18px 44px rgba(2, 8, 25, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.16);
        }

        .mobile-menu.active {
            display: block;
        }

        .mobile-nav-links {
            display: flex;
            flex-direction: column;
            gap: 15px;
            list-style: none;
        }

        .mobile-nav-links a {
            color: rgba(255, 255, 255, 0.96);
            text-decoration: none;
            font-weight: 600;
            font-size: 15px;
            padding: 12px 16px;
            border-radius: 14px;
            transition: all 0.2s ease;
            text-align: left;
            background: linear-gradient(180deg, rgba(255, 255, 255, 0.16) 0%, rgba(255, 255, 255, 0.08) 100%), rgba(17, 24, 39, 0.42);
            border: 1px solid rgba(255, 255, 255, 0.22);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.12);
            backdrop-filter: blur(18px) saturate(160%);
            -webkit-backdrop-filter: blur(18px) saturate(160%);
            width: 100%;
            display: block;
            margin-bottom: 8px;
        }

        .mobile-nav-links a:hover {
            background: linear-gradient(180deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.1) 100%), rgba(17, 24, 39, 0.5);
            transform: translateY(-1px);
        }

        .mobile-nav-links a.active {
            background: linear-gradient(180deg, rgba(255, 255, 255, 0.24) 0%, rgba(255, 255, 255, 0.1) 100%), rgba(17, 24, 39, 0.52);
            border-color: rgba(255, 255, 255, 0.26);
        }

        .mobile-nav-links a::after { content: none; }

        .mobile-nav-links a:hover {
            background: var(--glass-medium);
            transform: translateY(-2px);
        }

        /* Carousel */
        .carousel-container {
            margin-top: 0; /* ocupa hasta el top, la nav (fixed) queda por encima */
            height: 100vh;
            position: relative;
            overflow: hidden;
            border-radius: 0; /* ocupar todo, sin bordes redondeados */
            margin-left: 0;
            margin-right: 0;
            width: 100vw; /* asegurar ancho completo */
            left: 50%;
            right: 50%;
            margin-left: -50vw; /* extender a los lados si hay contenedores centrados */
            margin-right: -50vw;
        }

        .carousel-slide {
            position: absolute;
            width: 100%;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            padding: 40px;
            opacity: 0;
            transition: opacity 1s ease-in-out;
            background-size: cover;
            background-position: center;
        }

        .carousel-slide::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.4);
            backdrop-filter: blur(15px);
            z-index: 1;
        }

        .carousel-content {
            position: relative;
            z-index: 2;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            width: 100%;
            margin: 0 auto;
            padding: 0 10px;
        }

        @media (min-width: 768px) {
            .carousel-content {
                max-width: min(95vw, 1400px);
                padding: 0 20px;
            }
        }

        @media (max-width: 767px) {
            .carousel-content {
                max-width: 100%;
                padding: 0 10px;
            }
        }

        @media (max-width: 480px) {
            .carousel-content {
                padding: 0 5px;
            }
        }

        .carousel-slide.active {
            opacity: 1;
        }

        .carousel-slide h1 {
            font-size: clamp(1.8rem, 5vw, 3.8rem);
            font-weight: 700;
            margin-bottom: 20px;
            text-shadow: 0 4px 30px rgba(0, 0, 0, 0.8);
            color: #ffffff;
            line-height: 1.2;
            padding: 0 10px;
        }

        .carousel-slide p {
            font-size: clamp(1rem, 3vw, 1.2rem);
            margin-bottom: 30px;
            max-width: 600px;
            opacity: 0.95;
            color: #ffffff;
            text-shadow: 0 2px 20px rgba(0, 0, 0, 0.7);
            font-weight: 500;
            padding: 0 10px;
            line-height: 1.4;
        }

        .carousel-subtitle {
            font-size: clamp(1.5rem, 4vw, 2.3rem);
            margin-bottom: 20px;
            max-width: 700px;
            opacity: 0.95;
            color: #ffffff;
            text-shadow: 0 2px 20px rgba(0, 0, 0, 0.7);
            font-weight: 500;
            padding: 0 10px;
            line-height: 1.5;
        }

        .carousel-slide .casas-main-message {
            font-size: clamp(1.5rem, 3.6vw, 2.4rem);
            font-weight: 600;
            letter-spacing: 0.02em;
            color: rgba(255, 255, 255, 0.96);
        }

        .carousel-highlight {
            margin-bottom: 30px;
            background: rgba(0, 0, 0, 0.35);
            padding: clamp(16px, 4vw, 28px);
            border-radius: 16px;
            backdrop-filter: blur(8px);
            max-width: 520px;
            width: calc(100% - 20px);
            margin-left: auto;
            margin-right: auto;
        }

        .carousel-highlight .highlight-line {
            font-size: clamp(1.1rem, 2.4vw, 1.6rem);
            margin: 4px 0;
            color: #ffffff;
            text-shadow: 0 2px 14px rgba(0, 0, 0, 0.6);
            font-weight: 600;
        }

        .carousel-highlight .highlight-title {
            font-size: clamp(1rem, 2.2vw, 1.4rem);
            text-transform: uppercase;
            letter-spacing: 0.32em;
            margin: 18px 0 10px;
            background: linear-gradient(135deg, #48a8ff 0%, #8fd3ff 40%, #c38bff 85%);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 0 3px 14px rgba(0, 0, 0, 0.55);
        }

        .carousel-highlight .highlight-value {
            font-size: clamp(2.2rem, 5vw, 3rem);
            font-weight: 800;
            margin: 0 0 14px;
            background: linear-gradient(135deg, #48a8ff 0%, #7fd6ff 35%, #b06bff 70%, #9a4dff 100%);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 0 6px 30px rgba(72, 168, 255, 0.35);
        }

        .carousel-highlight .highlight-subtext {
            font-size: clamp(1.3rem, 3.5vw, 2rem);
            margin: 8px 0;
            color: rgba(255, 255, 255, 0.92);
            text-shadow: 0 2px 16px rgba(0, 0, 0, 0.4);
            line-height: 1.5;
            padding: 0 4px;
            font-weight: 500;
        }

        .carousel-highlight .highlight-subtext:first-child {
            margin-top: 0;
        }

        .carousel-highlight .highlight-subtext:last-child {
            margin-bottom: 0;
        }

        .carousel-highlight .highlight-stop {
            font-size: clamp(1.2rem, 4.5vw, 2.4rem);
            font-weight: 800;
            letter-spacing: 0.08em;
            background: linear-gradient(135deg, #48a8ff 0%, #9a4dff 60%, #d37aff 100%);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            margin: 12px 0;
            text-transform: uppercase;
            text-shadow: 0 6px 26px rgba(72, 168, 255, 0.35);
            line-height: 1.3;
            padding: 0 4px;
        }

        .highlight-stop.highlight-stop-emphasis {
            font-size: clamp(0.85rem, 2vw, 1rem);
            font-weight: 600;
            letter-spacing: 0.02em;
            color: rgba(255, 255, 255, 0.9);
            text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
            text-transform: none;
            margin: 8px 0;
        }

        @media (max-width: 480px) {
            .highlight-stop.highlight-stop-emphasis {
                font-size: clamp(0.75rem, 2.5vw, 0.9rem);
                letter-spacing: 0.01em;
            }
        }

        @media (max-width: 768px) {
            .carousel-slide h1 {
                font-size: clamp(1.5rem, 6vw, 2rem);
                margin-bottom: 16px;
                padding: 0 15px;
            }

            .carousel-slide p {
                font-size: clamp(0.95rem, 3.5vw, 1.1rem);
                margin-bottom: 20px;
                padding: 0 15px;
            }

            .carousel-subtitle {
                font-size: clamp(1.2rem, 4.5vw, 1.8rem);
                margin-bottom: 16px;
                padding: 0 15px;
            }

            .carousel-highlight {
                padding: 16px 18px;
                margin-bottom: 20px;
                width: calc(100% - 30px);
            }

            .carousel-highlight .highlight-subtext {
                font-size: clamp(1.1rem, 4vw, 1.6rem);
                margin: 6px 0;
            }

            .carousel-highlight .highlight-stop {
                font-size: clamp(1.1rem, 5vw, 1.8rem);
                margin: 10px 0;
                letter-spacing: 0.05em;
            }

            .carousel-highlight .highlight-stop.highlight-stop-emphasis {
                font-size: clamp(0.8rem, 2.5vw, 0.95rem);
                margin: 8px 0;
            }

            .carousel-highlight .highlight-value {
                font-size: clamp(1.8rem, 6vw, 2.5rem);
            }

            .carousel-slide {
                padding: 20px 10px;
            }

            .cta-button {
                font-size: clamp(0.9rem, 2.5vw, 1rem);
                padding: 12px 24px;
                margin-top: 10px;
            }
        }

        @media (max-width: 480px) {
            .carousel-slide {
                padding: 15px 8px;
            }

            .carousel-slide h1 {
                font-size: clamp(1.3rem, 7vw, 1.7rem);
                margin-bottom: 12px;
                padding: 0 10px;
            }

            .carousel-slide p {
                font-size: clamp(0.85rem, 4vw, 1rem);
                margin-bottom: 16px;
                padding: 0 10px;
            }

            .carousel-subtitle {
                font-size: clamp(1.1rem, 5vw, 1.5rem);
                margin-bottom: 12px;
                padding: 0 10px;
            }

            .carousel-highlight {
                padding: 14px 16px;
                margin-bottom: 16px;
                width: calc(100% - 20px);
            }

            .carousel-highlight .highlight-subtext {
                font-size: clamp(1rem, 4.5vw, 1.4rem);
                margin: 5px 0;
            }

            .carousel-highlight .highlight-stop {
                font-size: clamp(1rem, 5.5vw, 1.6rem);
                margin: 8px 0;
                letter-spacing: 0.03em;
            }

            .carousel-highlight .highlight-stop.highlight-stop-emphasis {
                font-size: clamp(0.75rem, 3vw, 0.85rem);
                margin: 6px 0;
            }

            .carousel-highlight .highlight-value {
                font-size: clamp(1.6rem, 7vw, 2.2rem);
            }

            .cta-button {
                font-size: clamp(0.85rem, 3vw, 0.95rem);
                padding: 10px 20px;
            }
        }

        .cta-button {
            background: rgba(255, 255, 255, 0.2);
            border: 2px solid rgba(255, 255, 255, 0.4);
            color: #ffffff;
            padding: 15px 30px;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
        }

        .cta-button:hover {
            background: rgba(255, 255, 255, 0.3);
            border-color: rgba(255, 255, 255, 0.6);
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        }

        .carousel-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: var(--glass-medium);
            border: 1px solid var(--border-light);
            border-radius: 50%;
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            z-index: 3;
            font-size: 20px;
            color: var(--text-primary);
        }

        .carousel-nav:hover {
            background: var(--glass-strong);
            transform: translateY(-50%) scale(1.1);
        }

        @media (max-width: 767px) {
            .carousel-nav {
                display: none;
            }
        }

        .carousel-nav.prev {
            left: 20px;
        }

        .carousel-nav.next {
            right: 20px;
        }

        .carousel-indicators {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 15px;
            z-index: 3;
        }

        .indicator {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: var(--glass-medium);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .indicator.active {
            background: var(--text-primary);
            transform: scale(1.2);
        }

        /* Filters */
        .filters-section {
            padding: 30px 100px;
            margin-top: 40px;
        }

        .filters-container {
            padding: 30px;
        }

        .filters-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin-bottom: 30px;
        }

        .filter-group {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .filter-group label {
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 5px;
        }

        select {
            background: var(--glass-light);
            border: 1px solid var(--border-light);
            border-radius: 12px;
            padding: 12px 15px;
            color: var(--text-primary);
            font-size: 16px;
            backdrop-filter: blur(10px);
        }

        select:focus {
            outline: none;
            border-color: var(--accent-blue);
            background: var(--glass-medium);
        }

        select option {
            background: #1a1a2e;
            color: var(--text-primary);
        }

        .checkbox-group {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
            gap: 15px;
            margin-bottom: 20px;
        }

        .checkbox-item {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .checkbox-item input[type="checkbox"] {
            width: 18px;
            height: 18px;
            accent-color: var(--accent-blue);
        }

        .checkbox-item label {
            color: var(--text-secondary);
        }

        .search-button {
            width: 100%;
            background: linear-gradient(135deg, var(--accent-blue) 0%, var(--accent-purple) 100%);
            border: none;
            color: var(--text-primary);
            padding: 15px;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-top: 20px;
        }

        .search-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
        }

        /* Properties */
        .properties-section {
            padding: 20px 100px 40px;
        }

        .properties-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            margin-top: 10px;
            justify-content: center;
            width: 100%;
        }

        .property-card {
            border-radius: 20px;
            overflow: hidden;
            transition: all 0.3s ease;
            cursor: pointer;
            background: #ffffff; /* asegura fondo blanco hasta el bottom */
            width: 360px;
            flex: 0 0 auto;
        }

        .property-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
            background: #ffffff; /* evita que el :hover de .glass cambie el fondo */
        }

        .property-image {
            height: 250px;
            background: linear-gradient(135deg, var(--accent-blue) 0%, var(--accent-purple) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }

        .property-image-next {
            position: absolute;
            top: 50%;
            right: 18px;
            width: 42px;
            height: 42px;
            border-radius: 50%;
            border: none;
            background: var(--glass-medium);
            color: var(--text-primary);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.4rem;
            cursor: pointer;
            transition: all 0.3s ease;
            backdrop-filter: blur(14px);
            -webkit-backdrop-filter: blur(14px);
            box-shadow: 0 6px 18px rgba(15, 23, 42, 0.18);
            transform: translateY(-50%);
        }

        .property-image-next:hover {
            transform: translate(3px, -50%);
            box-shadow: 0 10px 24px rgba(15, 23, 42, 0.22);
        }

        .property-image-next:focus-visible {
            outline: 2px solid var(--accent-blue);
            outline-offset: 2px;
        }

        .property-price {
            position: absolute;
            top: 20px;
            right: 20px;
            background: var(--glass-medium);
            backdrop-filter: blur(15px);
            border: 1px solid var(--border-medium);
            color: var(--text-primary);
            padding: 8px 16px;
            border-radius: 20px;
            font-weight: 700;
            font-size: 1.1rem;
            transition: all 0.3s ease;
        }

        .property-price:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
        }

        .property-labels {
            position: absolute;
            top: 20px;
            left: 20px;
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .label-group {
            background: var(--glass-medium);
            backdrop-filter: blur(15px);
            border: 1px solid var(--border-medium);
            border-radius: 15px;
            padding: 6px 12px;
            transition: all 0.3s ease;
        }

        .label-group:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
        }

        .label-text {
            color: var(--text-primary);
            font-size: 0.85rem;
            font-weight: 600;
            text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
        }

        .house-icon {
            font-size: 4rem;
            opacity: 0.7;
        }

        .property-real-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 0;
        }

        .property-image:has(.property-real-image) {
            background: none;
        }

        .property-tipologia {
            position: absolute;
            bottom: 15px;
            right: 15px;
            padding: 8px 12px;
            border-radius: 12px;
            background: linear-gradient(180deg, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0.08) 100%), rgba(17, 24, 39, 0.48);
            border: 1px solid rgba(255, 255, 255, 0.24);
            backdrop-filter: blur(18px) saturate(160%);
            -webkit-backdrop-filter: blur(18px) saturate(160%);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.12);
        }

        .tipologia-text {
            color: rgba(255, 255, 255, 0.96);
            font-size: 0.85rem;
            font-weight: 600;
            text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
        }

        .property-commission {
            position: absolute;
            bottom: 15px;
            left: 15px;
            padding: 8px 12px;
            border-radius: 12px;
            background: linear-gradient(160deg, rgba(8, 22, 35, 0.72) 0%, rgba(21, 32, 46, 0.85) 100%);
            border: 1px solid rgba(72, 168, 255, 0.45);
            backdrop-filter: blur(20px) saturate(180%);
            -webkit-backdrop-filter: blur(20px) saturate(180%);
            box-shadow: 0 10px 28px rgba(8, 22, 35, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.18);
        }

        .commission-pill {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 4px 10px;
            border-radius: 999px;
            font-size: 0.82rem;
            font-weight: 700;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            color: rgba(255, 255, 255, 0.95);
            background: linear-gradient(135deg, rgba(72, 168, 255, 0.95) 0%, rgba(110, 78, 255, 0.95) 70%, rgba(196, 123, 255, 0.95) 100%);
            box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.22), 0 4px 16px rgba(72, 168, 255, 0.45);
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.45);
        }

        .property-details {
            padding: 25px;
            background: transparent; /* el fondo blanco lo da la tarjeta */
            color: #333;
        }

        .property-title {
            font-size: 1.15rem;
            font-weight: 700;
            margin-bottom: 10px;
            color: #1e293b;
            line-height: 1.4;
            letter-spacing: -0.01em;
        }

        .property-price-detail {
            margin-bottom: 12px;
            padding-bottom: 12px;
            border-bottom: 1px solid rgba(0, 0, 0, 0.06);
        }

        .property-price-detail .price-amount {
            font-size: 1.25rem;
            font-weight: 700;
            color: #0f172a;
            letter-spacing: -0.02em;
            background: linear-gradient(135deg, #1e40af 0%, #7c3aed 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            display: inline-block;
        }

        .property-street {
            color: #475569;
            font-size: 0.9rem;
            font-weight: 500;
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            gap: 6px;
            letter-spacing: 0.01em;
            opacity: 0.85;
        }

        .property-reference {
            font-size: 0.9rem;
            font-weight: 600;
            color: #475569;
            letter-spacing: 0.5px;
            text-transform: uppercase;
            margin-bottom: 6px;
        }

        .property-location {
            margin-bottom: 16px;
            padding: 10px 14px;
            background: linear-gradient(135deg, rgba(76, 154, 255, 0.05) 0%, rgba(138, 43, 226, 0.05) 100%);
            border-radius: 12px;
            border: 1px solid rgba(76, 154, 255, 0.1);
            transition: all 0.3s ease;
        }

        .property-location:hover {
            background: linear-gradient(135deg, rgba(76, 154, 255, 0.08) 0%, rgba(138, 43, 226, 0.08) 100%);
            border-color: rgba(76, 154, 255, 0.2);
            transform: translateY(-1px);
        }


        .location-breadcrumb {
            display: flex;
            flex-direction: column;
            gap: 6px;
        }

        .breadcrumb-line {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 4px 8px;
            border-radius: 8px;
            background: rgba(255, 255, 255, 0.6);
            transition: all 0.2s ease;
        }

        .breadcrumb-line:hover {
            background: rgba(76, 154, 255, 0.1);
            transform: translateX(2px);
        }

        .breadcrumb-emoji {
            font-size: 1rem;
            filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1));
        }

        .breadcrumb-item {
            color: #34495e;
            font-size: 0.9rem;
            font-weight: 500;
            transition: all 0.2s ease;
        }

        .breadcrumb-line:hover .breadcrumb-item {
            color: #2c3e50;
        }

        .breadcrumb-item.city {
            font-weight: 600;
            color: #2c3e50;
        }

        .breadcrumb-item.tipologia {
            font-weight: 700;
            color: #2c3e50;
            font-size: 1rem;
            text-transform: capitalize;
            letter-spacing: 0.5px;
        }

        .breadcrumb-line:first-child {
            background: linear-gradient(135deg, rgba(76, 154, 255, 0.15) 0%, rgba(138, 43, 226, 0.15) 100%);
            border: 1px solid rgba(76, 154, 255, 0.2);
            margin-bottom: 4px;
        }

        .breadcrumb-line:first-child:hover {
            background: linear-gradient(135deg, rgba(76, 154, 255, 0.2) 0%, rgba(138, 43, 226, 0.2) 100%);
            border-color: rgba(76, 154, 255, 0.3);
        }

        .property-location {
            display: flex;
            align-items: center;
            gap: 5px;
            font-weight: 500;
        }

        .property-specs {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
        }

        .spec {
            background: rgba(76, 154, 255, 0.2);
            color: var(--accent-blue);
            padding: 6px 12px;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: 500;
        }

        .spec.energy-cert {
            background: rgba(34, 197, 94, 0.18);
            color: #047857;
            border: 1px solid rgba(34, 197, 94, 0.35);
        }

        .property-description {
            margin-top: 18px;
            color: #475569;
            line-height: 1.6;
            font-size: 0.95rem;
        }

        .results-count {
            text-align: center;
            margin: 30px 0;
            padding: 20px;
            border-radius: 15px;
            background: var(--glass-light);
            backdrop-filter: blur(10px);
            display: none;
        }

        .results-count.show {
            display: block;
        }

        .results-count h3 {
            color: #4ade80;
            font-size: 1.2rem;
        }

        /* Process Section */
        .process-section {
            padding: 60px 100px;
            margin-top: 40px;
        }

        .process-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .process-header h2 {
            font-size: 3rem;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 20px;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
        }

        .process-header p {
            font-size: 1.3rem;
            color: var(--text-secondary);
            max-width: 700px;
            margin: 0 auto;
        }

        .process-tabs {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-bottom: 50px;
        }

        .process-tab {
            background: var(--glass-light);
            border: 1px solid var(--border-light);
            border-radius: 50px;
            padding: 15px 40px;
            cursor: pointer;
            transition: all 0.3s ease;
            color: var(--text-secondary);
            font-weight: 600;
            font-size: 1.1rem;
        }

        .process-tab.active {
            background: linear-gradient(135deg, var(--accent-blue) 0%, var(--accent-purple) 100%);
            color: var(--text-primary);
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(76, 154, 255, 0.3);
        }

        .process-tab:hover:not(.active) {
            background: var(--glass-medium);
            transform: translateY(-1px);
        }

        .process-content {
            background: var(--glass-light);
            backdrop-filter: blur(20px);
            border: 1px solid var(--border-light);
            border-radius: 25px;
            padding: 50px;
        }

        .process-steps {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
        }

        .process-steps.collaborator-steps {
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            max-width: 1000px;
            margin: 0 auto;
        }

        .process-step.collaborator-card {
            min-height: 280px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .collaborator-contact-button {
            background: linear-gradient(135deg, var(--accent-blue) 0%, var(--accent-purple) 100%);
            border: none;
            color: var(--text-primary);
            padding: 12px 30px;
            border-radius: 50px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-top: 20px;
            align-self: center;
            box-shadow: 0 8px 20px rgba(76, 154, 255, 0.3);
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .collaborator-contact-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 30px rgba(76, 154, 255, 0.4);
        }

        .collaborator-contact-button:active {
            transform: translateY(-1px);
        }

        .process-step {
            background: var(--glass-medium);
            backdrop-filter: blur(15px);
            border: 1px solid var(--border-medium);
            border-radius: 20px;
            padding: 30px;
            text-align: center;
            transition: all 0.3s ease;
            position: relative;
        }

        .process-step:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
        }

        .step-number {
            position: absolute;
            top: -15px;
            left: 50%;
            transform: translateX(-50%);
            background: linear-gradient(135deg, var(--accent-blue) 0%, var(--accent-purple) 100%);
            color: var(--text-primary);
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 1.1rem;
            border: 3px solid var(--glass-light);
        }

        .step-icon {
            font-size: 3rem;
            margin: 20px 0;
            opacity: 0.8;
        }

        .step-title {
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 15px;
        }

        .step-description {
            font-size: 1rem;
            color: var(--text-secondary);
            line-height: 1.6;
        }

        .process-highlight {
            background: var(--glass-strong);
            border: 2px solid var(--accent-blue);
            border-radius: 20px;
            padding: 30px;
            margin-top: 40px;
            text-align: center;
        }

        .highlight-title {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--accent-blue);
            margin-bottom: 15px;
        }

        .highlight-text {
            font-size: 1.2rem;
            color: var(--text-primary);
            margin-bottom: 10px;
        }

        .highlight-subtext {
            font-size: 1rem;
            color: var(--text-secondary);
        }
        .static-page {
            padding: 160px 100px 120px;
            display: flex;
            flex-direction: column;
            gap: 36px;
            max-width: 1100px;
            margin: 0 auto;
            width: 100%;
        }

        .static-page .glass {
            background: linear-gradient(180deg, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0.08) 100%), rgba(17, 24, 39, 0.58);
            border: 1px solid rgba(255, 255, 255, 0.24);
            backdrop-filter: blur(24px) saturate(150%);
            -webkit-backdrop-filter: blur(24px) saturate(150%);
            border-radius: 46px;
            box-shadow: 0 12px 36px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.12);
            padding: 48px 56px;
            width: 100%;
            box-sizing: border-box;
        }

        .static-page .glass:hover {
            background: linear-gradient(180deg, rgba(255, 255, 255, 0.22) 0%, rgba(255, 255, 255, 0.12) 100%), rgba(17, 24, 39, 0.66);
            border: 1px solid rgba(255, 255, 255, 0.28);
        }

        .static-hero {
            text-align: center;
            padding: 0;
        }

        .static-hero h1 {
            font-size: 3rem;
            font-weight: 800;
            color: var(--text-primary);
            margin-bottom: 20px;
        }

        .static-hero p {
            font-size: 1.15rem;
            color: var(--text-secondary);
            line-height: 1.7;
            max-width: 720px;
            margin: 0 auto;
        }

        .static-section {
            padding: 0;
        }

        .static-section:not(:last-child) {
            margin-bottom: 16px;
        }

        .static-section h2 {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 18px;
        }

        .static-section h3 {
            font-size: 1.3rem;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 12px;
        }

        .static-section p,
        .static-section li {
            font-size: 1rem;
            color: var(--text-secondary);
            line-height: 1.8;
            margin-bottom: 14px;
        }

        .static-section ul {
            margin-left: 0;
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 18px;
        }

        .static-section ul li {
            background: rgba(255, 255, 255, 0.06);
            border: 1px solid rgba(255, 255, 255, 0.18);
            border-radius: 20px;
            padding: 18px 24px;
            box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
        }

        .static-section .highlight-box {
            background: rgba(76, 154, 255, 0.14);
            border: 1px solid rgba(76, 154, 255, 0.3);
            border-radius: 26px;
            padding: 28px;
            color: var(--text-primary);
            margin-top: 24px;
        }

        .static-section .highlight-box strong {
            color: var(--accent-blue);
        }

        .static-cta {
            text-align: center;
            margin-top: 30px;
        }

        .static-cta a {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: linear-gradient(135deg, var(--accent-blue) 0%, var(--accent-purple) 100%);
            color: var(--text-primary);
            padding: 14px 28px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 15px 30px rgba(76, 154, 255, 0.35);
        }

        .static-cta a:hover {
            transform: translateY(-3px);
            box-shadow: 0 18px 32px rgba(76, 154, 255, 0.45);
        }

        .static-list {
            display: grid;
            gap: 16px;
            margin-top: 20px;
        }

        .static-list li {
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.15);
            border-radius: 14px;
            padding: 16px 20px;
        }

        .static-list strong {
            color: var(--accent-blue);
        }

        .contact-section {
            padding: 60px 100px;
            margin-top: 40px;
        }

        .contact-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .contact-header h2 {
            font-size: 3rem;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 20px;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
        }

        .contact-header p {
            font-size: 1.3rem;
            color: var(--text-secondary);
            max-width: 700px;
            margin: 0 auto;
        }

        .contact-main-card {
            background: var(--glass-light);
            backdrop-filter: blur(20px);
            border: 1px solid var(--border-light);
            border-radius: 20px;
            padding: 60px;
            margin-bottom: 50px;
        }

        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .contact-hero-section {
            display: flex;
            flex-direction: column;
            justify-content: center;
            gap: 40px;
            height: 100%;
        }

        .contact-hero-image {
            text-align: center;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px 0;
        }

        .contact-hero-image img {
            width: 100%;
            max-width: 800px;
            height: auto;
            border-radius: 20px;
            object-fit: cover;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
            transition: all 0.3s ease;
        }

        .contact-hero-image img:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
        }

        .contact-hero-text {
            display: flex;
            flex-direction: column;
            justify-content: center;
            gap: 20px;
            height: 100%;
        }

        .contact-hero-text h3 {
            font-size: 2.8rem;
            color: var(--text-primary);
            font-weight: 700;
            line-height: 1.2;
        }

        .contact-hero-text p {
            font-size: 1.3rem;
            color: var(--text-secondary);
            line-height: 1.6;
        }

        .contact-ai-note {
            display: flex;
            flex-direction: column;
            gap: 12px;
            padding: 18px 22px;
            background: var(--glass-medium);
            border-radius: 16px;
            border: 1px solid var(--border-medium);
            box-shadow: 0 12px 32px rgba(15, 23, 42, 0.18);
        }

        .contact-ai-note p {
            margin: 0;
            font-size: 1.05rem;
            color: var(--text-primary);
            line-height: 1.5;
        }

        .contact-form {
            background: var(--glass-strong);
            backdrop-filter: blur(30px);
            padding: 50px;
            border-radius: 25px;
            border: 1px solid var(--border-medium);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
        }

        .form-header {
            text-align: center;
            margin-bottom: 35px;
            padding-bottom: 20px;
            border-bottom: 1px solid var(--border-light);
        }

        .form-header h3 {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 8px;
        }

        .form-header p {
            font-size: 0.95rem;
            color: var(--text-muted);
        }

        .form-status {
            display: none;
            margin-top: 18px;
            padding: 14px 16px;
            border-radius: 16px;
            font-weight: 600;
            font-size: 0.95rem;
            text-align: center;
        }

        .form-status.sending,
        .form-status.success,
        .form-status.error {
            display: block;
        }

        .form-status.sending {
            background: rgba(76, 154, 255, 0.15);
            border: 1px solid rgba(76, 154, 255, 0.35);
            color: rgba(214, 231, 255, 0.95);
        }

        .form-status.success {
            background: rgba(34, 197, 94, 0.18);
            border: 1px solid rgba(34, 197, 94, 0.4);
            color: #bbf7d0;
        }

        .form-status.error {
            background: rgba(239, 68, 68, 0.18);
            border: 1px solid rgba(239, 68, 68, 0.45);
            color: #fecaca;
        }

        .form-group {
            margin-bottom: 25px;
            position: relative;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: var(--text-primary);
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .input-wrapper {
            position: relative;
            display: flex;
            align-items: center;
        }

        .input-icon {
            position: absolute;
            left: 18px;
            font-size: 16px;
            color: rgba(255, 255, 255, 0.85);
            z-index: 2;
        }

        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 18px 18px 18px 50px;
            background: rgba(15, 30, 60, 0.6);
            backdrop-filter: blur(15px);
            border: 2px solid rgba(255, 255, 255, 0.25);
            border-radius: 15px;
            color: #ffffff;
            font-size: 15px;
            transition: all 0.3s ease;
            font-family: inherit;
        }

        .form-group input::placeholder,
        .form-group textarea::placeholder,
        .form-group select::placeholder {
            color: rgba(255, 255, 255, 0.75);
        }

        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: var(--accent-blue);
            background: rgba(15, 35, 70, 0.75);
            box-shadow: 0 0 0 3px rgba(76, 154, 255, 0.1);
            transform: translateY(-2px);
        }

        .form-group textarea {
            resize: vertical;
            min-height: 120px;
            padding-top: 18px;
        }

        .form-group select {
            cursor: pointer;
            appearance: none;
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
            background-position: right 18px center;
            background-repeat: no-repeat;
            background-size: 16px;
            padding-right: 50px;
        }

        .submit-button {
            width: 100%;
            background: linear-gradient(135deg, var(--accent-blue) 0%, var(--accent-purple) 100%);
            border: none;
            color: var(--text-primary);
            padding: 20px;
            border-radius: 15px;
            font-size: 1.1rem;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-top: 15px;
            box-shadow: 0 10px 25px rgba(76, 154, 255, 0.3);
        }

        .submit-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 35px rgba(76, 154, 255, 0.4);
        }

        .contact-image-section {
            display: none;
        }

        /* Modal */
        .modal {
            display: none;
            position: fixed;
            z-index: 2000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.7);
            backdrop-filter: blur(5px);
        }

        .modal.active {
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .modal-content {
            background: var(--glass-strong);
            backdrop-filter: blur(30px);
            border: 1px solid var(--border-medium);
            border-radius: 20px;
            padding: 40px;
            width: 90%;
            max-width: 500px;
            position: relative;
            animation: modalSlideIn 0.3s ease;
        }

        @keyframes modalSlideIn {
            from {
                opacity: 0;
                transform: translateY(-50px) scale(0.9);
            }
            to {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }

        .modal-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 25px;
            padding-bottom: 15px;
            border-bottom: 1px solid var(--border-light);
        }

        .modal-header h3 {
            color: var(--text-primary);
            font-size: 1.5rem;
            font-weight: 700;
        }

        .modal-close {
            background: var(--glass-light);
            border: 1px solid var(--border-light);
            border-radius: 50%;
            width: 35px;
            height: 35px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            color: var(--text-primary);
            font-size: 18px;
            transition: all 0.3s ease;
        }

        .modal-close:hover {
            background: var(--glass-medium);
            transform: rotate(90deg);
        }

        /* Formulario dentro del modal - sin padding/background extra ya que modal-content los tiene */
        .modal-content .contact-form {
            background: transparent;
            backdrop-filter: none;
            padding: 0;
            border-radius: 0;
            border: none;
            box-shadow: none;
        }

        /* Footer */
        .footer {
            background: var(--glass-light);
            backdrop-filter: blur(20px);
            border-top: 1px solid var(--border-light);
            margin-top: 60px;
            padding: 30px 100px 20px;
            margin-bottom: 0;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-section h3 {
            color: var(--text-primary);
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 20px;
        }

        .footer-section p, .footer-section a, .footer-section span {
            color: var(--text-secondary);
            text-decoration: none;
            line-height: 1.6;
            transition: all 0.3s ease;
        }

        .footer-section a:hover {
            color: var(--accent-blue);
        }

        .footer-section span {
            cursor: default;
        }

        .footer-links {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .social-links {
            display: flex;
            flex-direction: column;
            gap: 20px;
            margin-top: 20px;
            align-items: center;
        }

        .social-icons {
            display: flex;
            gap: 18px;
            flex-wrap: wrap;
            align-items: center;
            justify-content: center;
        }

        .social-link {
            background: var(--glass-medium);
            padding: 12px;
            border-radius: 50%;
            color: var(--text-secondary);
            text-decoration: none;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 45px;
            height: 45px;
        }

        .social-link img {
            width: 24px;
            height: 24px;
            object-fit: contain;
        }

        .social-link:hover {
            background: var(--glass-strong);
            color: var(--accent-blue);
            transform: translateY(-2px);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid var(--border-light);
            color: var(--text-muted);
            font-size: 0.9rem;
        }

        .footer-certification {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            color: var(--text-secondary);
            font-weight: 600;
            letter-spacing: 0.5px;
        }

        .footer-certification img {
            height: 96px;
            width: auto;
            object-fit: contain;
        }

        .footer-logo {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 15px;
        }

        .footer-logo img {
            height: 50px;
            width: auto;
            object-fit: contain;
        }

        .footer-logo-text {
            font-size: 2rem;
            font-weight: 700;
            color: var(--text-primary);
        }

        /* Responsive */
        @media (max-width: 1200px) and (min-width: 769px) {
            header {
                padding: 20px 40px;
            }

            .filters-section, .properties-section, .contact-section, .footer, .process-section, .honorarios-section {
                padding-left: 40px;
                padding-right: 40px;
            }

            .properties-section {
                padding: 20px 40px 40px;
            }
        }

        @media (max-width: 768px) {
            header {
                padding: 15px 20px;
            }

            nav {
                padding: 10px 16px;
                min-height: 50px;
            }

            .logo {
                font-size: 18px;
                padding: 4px 8px;
            }

            .nav-center {
                display: none;
            }

            .mobile-menu-toggle {
                display: flex;
            }

            .mobile-menu {
                left: 0;
                right: 0;
                width: calc(100% - 32px);
                margin: 0 auto;
                border-radius: 34px;
            }

            .filters-container {
                padding: 22px 18px;
                border-radius: 22px;
            }

            .filters-grid,
            .checkbox-group {
                gap: 14px;
            }

            .checkbox-group {
                margin-bottom: 16px;
            }

            .process-tabs {
                gap: 12px;
                margin-bottom: 32px;
            }

            .process-content {
                padding: 24px 18px;
                border-radius: 22px;
            }

            .process-step {
                padding: 22px 18px;
            }

            .step-icon {
                font-size: 2.4rem;
                margin: 16px 0;
            }

            .honorarios-content {
                padding: 50px 0;
                border-radius: 0;
            }

            .honorarios-cards {
                gap: 50px;
                padding: 0 20px;
            }

            .honorario-card {
                padding: 48px 24px;
                border-radius: 20px;
            }

            .theme-toggle {
                display: none;
            }

            .carousel-container {
                margin-top: 0;
                margin-left: 0;
                margin-right: 0;
                height: 100vh;
                border-radius: 0;
                width: 100vw;
                left: 50%;
                right: 50%;
                margin-left: -50vw;
                margin-right: -50vw;
            }

            .carousel-slide h1 {
                font-size: 2.2rem;
            }

            .carousel-nav {
                width: 40px;
                height: 40px;
                font-size: 16px;
            }

            .filters-section, .properties-section, .contact-section, .footer, .process-section {
                padding-left: 20px;
                padding-right: 20px;
            }

            .properties-section {
                padding: 20px 0 40px;
            }

            .properties-grid {
                margin-top: 0;
                gap: 20px;
                justify-items: stretch;
                justify-content: center;
            }

            .property-card {
                max-width: none;
                margin: 0;
                border-radius: 0;
            }

            .contact-section, .honorarios-section {
                padding-left: 0;
                padding-right: 0;
            }

            .contact-main-card {
                margin: 0 0 50px;
                border-radius: 0;
                padding: 50px 0;
            }

            .contact-header {
                padding-left: 20px;
                padding-right: 20px;
            }

            .contact-grid {
                grid-template-columns: 1fr;
                gap: 50px;
                padding: 0 20px;
            }

            .contact-hero-text h3 {
                font-size: 2.2rem;
            }

            .contact-form {
                border-radius: 22px;
                padding: 48px 24px;
            }

            .contact-form .form-header {
                margin-bottom: 28px;
            }

            .contact-hero-image img {
                width: 100%;
                max-width: 100%;
                height: auto;
            }

            .footer-logo {
                justify-content: center;
            }

            .social-links {
                justify-content: center;
            }

            .process-section {
                padding: 50px 0;
            }

            .process-header {
                padding: 0 20px;
            }

            .process-content {
                padding: 30px 0;
                border-radius: 0;
                box-shadow: none;
                margin: 0;
            }

            .process-steps {
                grid-template-columns: 1fr;
                gap: 30px;
                padding: 0 20px;
            }

            .process-steps.collaborator-steps {
                grid-template-columns: 1fr;
                max-width: 100%;
            }

            .process-tabs {
                flex-direction: column;
                align-items: center;
                gap: 15px;
            }

            .process-tab {
                width: 200px;
                text-align: center;
            }

            .properties-grid {
                gap: 0;
                justify-content: center;
            }

            .property-card {
                width: 100%;
                max-width: 100%;
            }

            .filters-grid, .checkbox-group {
                grid-template-columns: 1fr;
            }

            .static-page {
                padding: 110px 20px 60px;
                gap: 24px;
                max-width: none;
            }

            .static-page .glass {
                padding: 32px 24px;
                border-radius: 28px;
                width: 100%;
            }

            .static-hero {
                padding: 0;
            }

            .static-hero h1 {
                font-size: 2.2rem;
            }

            .static-hero p {
                font-size: 1.05rem;
            }

            .static-section {
                padding: 0;
            }

            .static-section ul {
                gap: 14px;
            }

            .static-section ul li {
                padding: 16px 18px;
                border-radius: 18px;
            }

            .footer-content {
                grid-template-columns: 1fr;
                text-align: center;
            }
        }

        /* Ajustes para pantallas medianas: evitar que los botones se salgan */
        @media (max-width: 1100px) and (min-width: 769px) {
            .nav-center {
                max-width: 55vw;
                overflow-x: auto;
                -webkit-overflow-scrolling: touch;
                scrollbar-width: none;
            }
            .nav-center::-webkit-scrollbar { display: none; }
            .nav-center a {
                font-size: 13px;
                padding: 6px 12px;
            }
            nav {
                gap: 8px;
            }
        }

        @media (min-width: 769px) {
            .mobile-menu-toggle {
                display: none !important;
            }
        }

        /* Estilos para la sección de honorarios con liquid glass */
        .honorarios-section {
            padding: 60px 100px;
            margin-top: 40px;
        }

        .honorarios-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .honorarios-main-title {
            font-size: 3rem;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 20px;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
        }

        .honorarios-subtitle {
            font-size: 1.2rem;
            color: var(--text-secondary);
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.6;
        }

        .honorarios-content {
            background: var(--glass-light);
            backdrop-filter: blur(20px);
            border: 1px solid var(--border-light);
            border-radius: 25px;
            padding: 40px 0;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
        }

        .honorarios-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
            padding: 0 40px;
        }

        .honorario-card {
            background: var(--glass-medium);
            backdrop-filter: blur(15px);
            border: 1px solid var(--border-medium);
            border-radius: 20px;
            padding: 30px;
            text-align: center;
            transition: all 0.3s ease;
            position: relative;
        }

        .honorario-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
        }


        .card-icon {
            font-size: 3rem;
            margin-bottom: 20px;
            display: block;
        }

        .card-title {
            font-size: 1.5rem;
            color: var(--text-primary);
            margin-bottom: 15px;
            font-weight: 600;
        }

        .card-commission {
            font-size: 2rem;
            color: #e74c3c;
            font-weight: 700;
            margin-bottom: 15px;
            text-shadow: 0 2px 4px rgba(0,0,0,0.1);
        }

        .card-commission.green {
            color: #27ae60;
        }

        .card-description {
            color: var(--text-secondary);
            font-size: 1rem;
            line-height: 1.5;
            margin-bottom: 15px;
        }

        .limited-offer {
            display: block;
            color: #e74c3c;
            font-size: 0.75rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-top: 10px;
            opacity: 0.8;
        }

        /* Responsive design */
        @media (max-width: 768px) {
            .honorarios-main-title {
                font-size: 2.5rem;
            }
            
            .honorarios-subtitle {
                font-size: 1.1rem;
            }
            
            .honorarios-section {
                padding: 50px 0;
            }
            
            .honorarios-content {
                margin: 0;
                border-radius: 0;
                box-shadow: none;
            }

            .honorarios-header {
                padding: 0 20px;
            }
            
            .honorarios-cards {
                grid-template-columns: 1fr;
                gap: 30px;
                padding: 0 20px;
            }
            
            .honorario-card {
                padding: 25px;
                width: 100%;
                max-width: none;
            }
            
            .card-icon {
                font-size: 2.5rem;
            }
            
            .card-title {
                font-size: 1.3rem;
            }
            
            .card-commission {
                font-size: 1.7rem;
            }
        }
        }