:root {
            --prive-blue: #23354f;
            --prive-bg: #f5f4f0;
        }

        body {
            font-family: 'Urbanist', sans-serif;
            color: var(--prive-blue);
            background-color: var(--prive-bg);
        }

        /* Tipografía Serif */
        .serif-text {
            font-family: 'Libre Caslon Text', serif;
            color: var(--prive-blue);
            font-size: 2rem;
        }

        .logo-title {
            font-weight: 700;
            letter-spacing: 5px;
            font-size: 3.5rem;
            margin-bottom: 0;
            color: var(--prive-blue);
        }

        .logo-subtitle {
            font-size: 0.8rem;
            letter-spacing: 6px;
            font-weight: 300;
        }

        .content-section {
            background-color: var(--prive-bg);
            padding: 3rem 2rem;
        }

        .inner-content {
            max-width: 450px;
            margin: 0 auto;
        }

        /* --- SECCIÓN DE IMAGEN --- */
        .image-section {
            /* REEMPLAZA ESTA URL CON TU IMAGEN REAL en WordPress */
            background-image: url('https://edificioprive.cl/wp-content/themes/pronto-prive/assets/images/foto-principal.jpg'); 
            background-size: cover;
            background-position: center;
            min-height: 50vh; 
        }

        /* --- ESTILOS DEL FORMULARIO (Útiles para tu plugin de WP) --- */
        .btn-prive {
            background-color: var(--prive-blue);
            color: white;
            border-radius: 0;
            padding: 0.9rem 2rem;
            font-weight: 600;
            letter-spacing: 1px;
            transition: background-color 0.3s ease;
        }

        .btn-prive:hover {
            background-color: #152236;
            color: white;
        }

        .form-control {
            border-radius: 0;
            padding: 0.9rem 1.5rem;
            border: 1px solid #e0dfdb; /* Borde sutil para que no se pierda en el fondo */
            background-color: white;
        }

        .form-control:focus {
            box-shadow: none;
            border-color: var(--prive-blue);
        }

        .social-link {
            color: var(--prive-blue);
            text-decoration: none;
            font-size: 0.9rem;
            display: flex;
            align-items: center;
            gap: 5px;
            transition: color 0.3s ease;
        }

        .social-link:hover {
            color: #152236;
        }

        .logo-prive {
            width: 45%;
        }

        /* --- COMPORTAMIENTO MÓVIL --- */
        @media (max-width: 767.98px) {
            .desktop-titles { 
                display: none; 
            }
            .image-section {
                min-height: 65vh; /* Un poco más alto para dar espacio al texto */
            }
            /* Filtro oscuro mejorado para legibilidad en móvil */
            .image-section::after {
                content: '';
                position: absolute;
                top: 0; left: 0; right: 0; bottom: 0;
                background: linear-gradient(180deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.3) 100%);
            }
            .mobile-titles {
                z-index: 2; /* Por encima del filtro */
            }
            .mobile-titles .logo-title,
            .mobile-titles .logo-title > .logo-prive,
            .mobile-titles .logo-subtitle, 
            .mobile-titles .serif-text {
                color: var(--prive-bg) !important;
            }
        }

        @media (min-width: 768px) {
            .mobile-titles { 
                display: none !important; 
            }
        }